aboutsummaryrefslogtreecommitdiffstats
path: root/system/doc/efficiency_guide/functions.xml
diff options
context:
space:
mode:
authorTuncer Ayaz <[email protected]>2011-01-27 11:49:57 +0100
committerHenrik Nord <[email protected]>2011-03-25 14:40:51 +0100
commite2ad0e63077cc08c14edebae54925c50828cde3a (patch)
tree206c66a2a8112a891d92431c9cd7f907ac4d238d /system/doc/efficiency_guide/functions.xml
parentb2f3b6b3b254015e0fd6540353b22ccb3df71bf7 (diff)
downloadotp-e2ad0e63077cc08c14edebae54925c50828cde3a.tar.gz
otp-e2ad0e63077cc08c14edebae54925c50828cde3a.tar.bz2
otp-e2ad0e63077cc08c14edebae54925c50828cde3a.zip
Fix typos in efficiency guide
Diffstat (limited to 'system/doc/efficiency_guide/functions.xml')
-rw-r--r--system/doc/efficiency_guide/functions.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/doc/efficiency_guide/functions.xml b/system/doc/efficiency_guide/functions.xml
index fe14a4f000..6be49dd7c9 100644
--- a/system/doc/efficiency_guide/functions.xml
+++ b/system/doc/efficiency_guide/functions.xml
@@ -127,7 +127,7 @@ map_pairs2(_Map, [_|_]=Xs, [] ) ->
map_pairs2(Map, [X|Xs], [Y|Ys]) ->
[Map(X, Y)|map_pairs2(Map, Xs, Ys)].]]></code>
- <p>the compiler is free rearrange the clauses. It will generate code
+ <p>the compiler is free to rearrange the clauses. It will generate code
similar to this</p>
<p><em>DO NOT (already done by the compiler)</em></p>