diff options
author | Björn Gustavsson <[email protected]> | 2011-10-26 15:39:50 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-10-27 12:57:55 +0200 |
commit | debce2eaa6bd62dca4d0a2ad5603af69528ced04 (patch) | |
tree | f9c65b17e4fdb966101edcaf731624da527c37cf /system/doc/efficiency_guide/commoncaveats.xml | |
parent | a971c9568ccebed4e8d00abf52faa59a2bcc1c18 (diff) | |
download | otp-debce2eaa6bd62dca4d0a2ad5603af69528ced04.tar.gz otp-debce2eaa6bd62dca4d0a2ad5603af69528ced04.tar.bz2 otp-debce2eaa6bd62dca4d0a2ad5603af69528ced04.zip |
stdlib: Remove the deprecated regexp module
Diffstat (limited to 'system/doc/efficiency_guide/commoncaveats.xml')
-rw-r--r-- | system/doc/efficiency_guide/commoncaveats.xml | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/system/doc/efficiency_guide/commoncaveats.xml b/system/doc/efficiency_guide/commoncaveats.xml index 61d13636c0..7f2d51e609 100644 --- a/system/doc/efficiency_guide/commoncaveats.xml +++ b/system/doc/efficiency_guide/commoncaveats.xml @@ -33,20 +33,6 @@ from a performance point of view.</p> <section> - <title>The regexp module</title> - - <p>The regular expression functions in the - <seealso marker="stdlib:regexp">regexp</seealso> - module are written in Erlang, not in C, and were - meant for occasional use on small amounts of data, - for instance for validation of configuration files - when starting an application.</p> - - <p>Use the <seealso marker="stdlib:re">re</seealso> module - (introduced in R13A) instead, especially in time-critical code.</p> - </section> - - <section> <title>The timer module</title> <p>Creating timers using <seealso |