diff options
author | Marcus Arendt <[email protected]> | 2014-11-24 11:46:38 +0100 |
---|---|---|
committer | Marcus Arendt <[email protected]> | 2014-11-24 11:46:38 +0100 |
commit | 2b13135cc0e23ec01f5a74c371b60ef0ec02775e (patch) | |
tree | e41d23935574e8e97b2fdc8aad29c1c4711209c5 /system/doc/efficiency_guide | |
parent | a881aaf73a7c0f102175aa837679c62976575fa1 (diff) | |
parent | 09725c52dfbdcce5ebcf4e52f856f732c738b0d8 (diff) | |
download | otp-2b13135cc0e23ec01f5a74c371b60ef0ec02775e.tar.gz otp-2b13135cc0e23ec01f5a74c371b60ef0ec02775e.tar.bz2 otp-2b13135cc0e23ec01f5a74c371b60ef0ec02775e.zip |
Merge branch 'maint'
Diffstat (limited to 'system/doc/efficiency_guide')
-rw-r--r-- | system/doc/efficiency_guide/tablesDatabases.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/doc/efficiency_guide/tablesDatabases.xml b/system/doc/efficiency_guide/tablesDatabases.xml index 5b0df76371..94c921fa1c 100644 --- a/system/doc/efficiency_guide/tablesDatabases.xml +++ b/system/doc/efficiency_guide/tablesDatabases.xml @@ -136,7 +136,7 @@ print_person(PersonId) -> io:format("No person with ID = ~p~n", [PersonID]) end. -%%% Internal functionss +%%% Internal functions print_name(PersonID) -> [Person] = ets:lookup(person, PersonId), io:format("No person ~p~n", [Person#person.name]). |