diff options
author | Filipe David Manana <[email protected]> | 2010-12-13 18:05:44 +0000 |
---|---|---|
committer | Filipe David Manana <[email protected]> | 2010-12-13 18:05:44 +0000 |
commit | 18777e8f34979c4bc66ccd6930ed095a7a88891a (patch) | |
tree | 83e7e247a1896cb572b3242838e7f73c10b4c0eb /lib/stdlib/doc/src/orddict.xml | |
parent | c5377779548f706c7c82be38fdd9b16551100c38 (diff) | |
download | otp-18777e8f34979c4bc66ccd6930ed095a7a88891a.tar.gz otp-18777e8f34979c4bc66ccd6930ed095a7a88891a.tar.bz2 otp-18777e8f34979c4bc66ccd6930ed095a7a88891a.zip |
Fixes to the orddict module documentation
Fixed grammar and one inconsistency (Key - Value instead of key/value, since everywhere else the former is used).
Diffstat (limited to 'lib/stdlib/doc/src/orddict.xml')
-rw-r--r-- | lib/stdlib/doc/src/orddict.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/stdlib/doc/src/orddict.xml b/lib/stdlib/doc/src/orddict.xml index 08c808f822..9d036f0725 100644 --- a/lib/stdlib/doc/src/orddict.xml +++ b/lib/stdlib/doc/src/orddict.xml @@ -172,8 +172,8 @@ ordered_dictionary() <v>Orddict = ordered_dictionary()</v> </type> <desc> - <p>This function converts the key/value list <c>List</c> to a - dictionary.</p> + <p>This function converts the <c>Key</c> - <c>Value</c> list + <c>List</c> to a dictionary.</p> </desc> </func> <func> @@ -277,7 +277,7 @@ merge(Fun, D1, D2) -> <v>Orddict1 = Orddict2 = ordered_dictionary()</v> </type> <desc> - <p>Update the a value in a dictionary by calling <c>Fun</c> on + <p>Update a value in a dictionary by calling <c>Fun</c> on the value to get a new value. An exception is generated if <c>Key</c> is not present in the dictionary.</p> </desc> @@ -292,7 +292,7 @@ merge(Fun, D1, D2) -> <v>Orddict1 = Orddict2 = ordered_dictionary()</v> </type> <desc> - <p>Update the a value in a dictionary by calling <c>Fun</c> on + <p>Update a value in a dictionary by calling <c>Fun</c> on the value to get a new value. If <c>Key</c> is not present in the dictionary then <c>Initial</c> will be stored as the first value. For example <c>append/3</c> could be defined |