aboutsummaryrefslogtreecommitdiffstats
path: root/erts
diff options
context:
space:
mode:
authorCristian Greco <[email protected]>2010-09-03 22:34:26 +0200
committerBjörn Gustavsson <[email protected]>2010-09-06 11:27:27 +0200
commit731b8398e57f55459d4616b12775a3738517e2e5 (patch)
treedc0b8e3e860fea9bec09aaaf94628e9f0b97acc2 /erts
parent8f67f51105560f1c0e721117100cf20d0c6061c0 (diff)
downloadotp-731b8398e57f55459d4616b12775a3738517e2e5.tar.gz
otp-731b8398e57f55459d4616b12775a3738517e2e5.tar.bz2
otp-731b8398e57f55459d4616b12775a3738517e2e5.zip
Fix minor typos in the documentation
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 1eec45e0f3..5a1c64c13e 100644
--- a/erts/doc/src/erlang.xml
+++ b/erts/doc/src/erlang.xml
@@ -147,7 +147,7 @@ iolist() = [char() | binary() | iolist()]
<c>Tuple1</c>, and contains the elements in <c>Tuple1</c>
followed by <c>Term</c> as the last element. Semantically
equivalent to
- <c>list_to_tuple(tuple_to_list(Tuple ++ [Term])</c>, but much
+ <c>list_to_tuple(tuple_to_list(Tuple) ++ [Term])</c>, but much
faster.</p>
<pre>
> <input>erlang:append_element({one, two}, three).</input>