diff options
author | Erlang/OTP <[email protected]> | 2010-03-15 13:13:21 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-03-15 13:13:21 +0000 |
commit | 3aa73b1a0345c0ce851081567c220697eeba4233 (patch) | |
tree | 3f3ea1a688e4bee01c1977e0ba9ef929dc8e63fa /system/doc/efficiency_guide/myths.xml | |
parent | f871d37d381e256ce6384c2aed4f1726ad7df7a8 (diff) | |
parent | 5a662ce8fa95ab467e77a654088df43e5528a584 (diff) | |
download | otp-3aa73b1a0345c0ce851081567c220697eeba4233.tar.gz otp-3aa73b1a0345c0ce851081567c220697eeba4233.tar.bz2 otp-3aa73b1a0345c0ce851081567c220697eeba4233.zip |
Merge branch 'bg/efficiency-guide' into dev
* bg/efficiency-guide:
Efficiency Guide: Recommend external funs over tuple funs
Efficiency Guide: The maximum number of atoms can be configured
Efficiency Guide: Fix typos
OTP-8515 bg/efficiency-guide
Diffstat (limited to 'system/doc/efficiency_guide/myths.xml')
-rw-r--r-- | system/doc/efficiency_guide/myths.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/doc/efficiency_guide/myths.xml b/system/doc/efficiency_guide/myths.xml index 76a72368bb..65113c9372 100644 --- a/system/doc/efficiency_guide/myths.xml +++ b/system/doc/efficiency_guide/myths.xml @@ -168,8 +168,8 @@ vanilla_reverse([], Acc) -> <p>Actually, string handling could be slow if done improperly. In Erlang, you'll have to think a little more about how the strings are used and choose an appropriate representation and use - the <seealso marker="stdlib:re">re</seealso> instead of the obsolete - <c>regexp</c> module if you are going to use regualr expressions.</p> + the <seealso marker="stdlib:re">re</seealso> module instead of the obsolete + <c>regexp</c> module if you are going to use regular expressions.</p> </section> <section> |