diff options
author | Bernard Duggan <[email protected]> | 2011-02-23 16:00:20 +1100 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-04-01 14:49:51 +0200 |
commit | aa69482e98b02e99ff8c9dea6434daedf637aee9 (patch) | |
tree | a04724f0ee51f6ae4ba722ddf50a8af4c0f5d01d /lib/stdlib | |
parent | 91b2e57ea0e3ab794d4b57a12ef10205383525a5 (diff) | |
download | otp-aa69482e98b02e99ff8c9dea6434daedf637aee9.tar.gz otp-aa69482e98b02e99ff8c9dea6434daedf637aee9.tar.bz2 otp-aa69482e98b02e99ff8c9dea6434daedf637aee9.zip |
Various small documentation fixes
This change fixes a bunch of small (and a few less small) typos and
other errors in various modules that I've spotted throughout my travels.
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/doc/src/binary.xml | 2 | ||||
-rw-r--r-- | lib/stdlib/doc/src/dict.xml | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/lib/stdlib/doc/src/binary.xml b/lib/stdlib/doc/src/binary.xml index c5eb81a86a..da038bf30c 100644 --- a/lib/stdlib/doc/src/binary.xml +++ b/lib/stdlib/doc/src/binary.xml @@ -485,7 +485,7 @@ <code> 1> Bin = <<1,2,3,4,5,6,7,8,9,10>>. -2> binary:part(Bin,{byte_size(Bin), -5)). +2> binary:part(Bin,{byte_size(Bin), -5)}). <<6,7,8,9,10>> </code> diff --git a/lib/stdlib/doc/src/dict.xml b/lib/stdlib/doc/src/dict.xml index 40e61d7d33..1540a930ba 100644 --- a/lib/stdlib/doc/src/dict.xml +++ b/lib/stdlib/doc/src/dict.xml @@ -55,10 +55,8 @@ dictionary() </type> <desc> <p>This function appends a new <c>Value</c> to the current list - of values associated with <c>Key</c>. An exception is - generated if the initial value associated with <c>Key</c> is - not a list of values.</p> - </desc> + of values associated with <c>Key</c>. + </desc> </func> <func> <name>append_list(Key, ValList, Dict1) -> Dict2</name> |