aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/doc/src/dict.xml
diff options
context:
space:
mode:
authorFilipe David Manana <[email protected]>2010-12-13 15:12:28 +0000
committerFilipe David Manana <[email protected]>2010-12-13 15:12:28 +0000
commitc5377779548f706c7c82be38fdd9b16551100c38 (patch)
tree5ea3c22f95a4a4508db3ac24629b32db2b2950cb /lib/stdlib/doc/src/dict.xml
parent9f4dd4934d427f0fb2caeb034115e0227cc4610a (diff)
downloadotp-c5377779548f706c7c82be38fdd9b16551100c38.tar.gz
otp-c5377779548f706c7c82be38fdd9b16551100c38.tar.bz2
otp-c5377779548f706c7c82be38fdd9b16551100c38.zip
Fixes to the dict 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/dict.xml')
-rw-r--r--lib/stdlib/doc/src/dict.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/stdlib/doc/src/dict.xml b/lib/stdlib/doc/src/dict.xml
index ebcd2eed09..1695e9d14f 100644
--- a/lib/stdlib/doc/src/dict.xml
+++ b/lib/stdlib/doc/src/dict.xml
@@ -165,8 +165,8 @@ dictionary()
<v>Dict = 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>
@@ -270,7 +270,7 @@ merge(Fun, D1, D2) ->
<v>Dict1 = Dict2 = 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>
@@ -285,7 +285,7 @@ merge(Fun, D1, D2) ->
<v>Dict1 = Dict2 = 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