From 731b8398e57f55459d4616b12775a3738517e2e5 Mon Sep 17 00:00:00 2001
From: Cristian Greco
Date: Fri, 3 Sep 2010 22:34:26 +0200
Subject: Fix minor typos in the documentation
---
erts/doc/src/erlang.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'erts/doc/src')
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()]
Tuple1, and contains the elements in Tuple1
followed by Term as the last element. Semantically
equivalent to
- list_to_tuple(tuple_to_list(Tuple ++ [Term]), but much
+ list_to_tuple(tuple_to_list(Tuple) ++ [Term]), but much
faster.