aboutsummaryrefslogtreecommitdiffstats
path: root/system/doc/efficiency_guide/functions.xml
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2011-03-25 14:55:50 +0100
committerHenrik Nord <[email protected]>2011-03-25 14:55:50 +0100
commit21a514ba7842380973fd4c4006d6cf71403d021e (patch)
treece4332309bdb5e53706d7782ac954a8eaee85724 /system/doc/efficiency_guide/functions.xml
parentad99d0e01d9c61dfad5e8a32dc587b61e2409edb (diff)
parent179de7d370b9e0398500d7d0e5ae34dd2ad6c619 (diff)
downloadotp-21a514ba7842380973fd4c4006d6cf71403d021e.tar.gz
otp-21a514ba7842380973fd4c4006d6cf71403d021e.tar.bz2
otp-21a514ba7842380973fd4c4006d6cf71403d021e.zip
Merge branch 'ta/doc-fixes' into dev
* ta/doc-fixes: Fix two typos in erlsrv log messages Fix typo in epmd help Fix typo in binary:part/2 example Fix typos in efficiency guide erts: Fix doc typos, duplication and readability Fix inet:port/1 doc to match implementation/spec Fix typos in zip manpage
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>