diff options
author | Fredrik Gustafsson <[email protected]> | 2013-08-14 12:23:22 +0200 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-08-14 12:23:22 +0200 |
commit | c49f2d1c169add2262a24696f85ea4b8fb8e49a2 (patch) | |
tree | 55aa4ba39655e3766cc3b9f6c976bfd02426b514 /erts/doc/src/erlang.xml | |
parent | fd3e32e7a13b522a04e17c815bba11d307fa1049 (diff) | |
download | otp-c49f2d1c169add2262a24696f85ea4b8fb8e49a2.tar.gz otp-c49f2d1c169add2262a24696f85ea4b8fb8e49a2.tar.bz2 otp-c49f2d1c169add2262a24696f85ea4b8fb8e49a2.zip |
erts: fixed doc regarding binary_part
Diffstat (limited to 'erts/doc/src/erlang.xml')
-rw-r--r-- | erts/doc/src/erlang.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/doc/src/erlang.xml b/erts/doc/src/erlang.xml index 767edc1cc0..5ee40823bc 100644 --- a/erts/doc/src/erlang.xml +++ b/erts/doc/src/erlang.xml @@ -235,7 +235,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> |