aboutsummaryrefslogtreecommitdiffstats
path: root/erts
diff options
context:
space:
mode:
authorFredrik Gustafsson <[email protected]>2013-08-14 12:23:22 +0200
committerFredrik Gustafsson <[email protected]>2013-08-14 12:23:22 +0200
commitc49f2d1c169add2262a24696f85ea4b8fb8e49a2 (patch)
tree55aa4ba39655e3766cc3b9f6c976bfd02426b514 /erts
parentfd3e32e7a13b522a04e17c815bba11d307fa1049 (diff)
downloadotp-c49f2d1c169add2262a24696f85ea4b8fb8e49a2.tar.gz
otp-c49f2d1c169add2262a24696f85ea4b8fb8e49a2.tar.bz2
otp-c49f2d1c169add2262a24696f85ea4b8fb8e49a2.zip
erts: fixed doc regarding binary_part
Diffstat (limited to 'erts')
-rw-r--r--erts/doc/src/erlang.xml2
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 = &lt;&lt;1,2,3,4,5,6,7,8,9,10&gt;&gt;.
-2> binary_part(Bin,{byte_size(Bin), -5)).
+2> binary_part(Bin,{byte_size(Bin), -5}).
&lt;&lt;6,7,8,9,10&gt;&gt;
</code>