diff options
author | Patrik Nyblom <[email protected]> | 2013-07-19 14:49:17 +0200 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2013-08-09 12:10:43 +0200 |
commit | 811134171adb1c926111338dba8f36b02a0ff4e0 (patch) | |
tree | 64d7ca6690f453690ff4bfd81960afb8a894ce13 /lib/stdlib/src/re.erl | |
parent | 6146e7642d4bb9f7c9bb5f8cbca548c1d9667e5c (diff) | |
download | otp-811134171adb1c926111338dba8f36b02a0ff4e0.tar.gz otp-811134171adb1c926111338dba8f36b02a0ff4e0.tar.bz2 otp-811134171adb1c926111338dba8f36b02a0ff4e0.zip |
Add documentation of extensions to re module
The following compile options are documented:
no_start_optimize
ucp
never_utf
The following run options are documented:
notempty_atstart
{capture, all_names}
The following new functions are documented:
re:inspect/2
Diffstat (limited to 'lib/stdlib/src/re.erl')
-rw-r--r-- | lib/stdlib/src/re.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdlib/src/re.erl b/lib/stdlib/src/re.erl index 4d6de1100d..79176ff317 100644 --- a/lib/stdlib/src/re.erl +++ b/lib/stdlib/src/re.erl @@ -27,9 +27,9 @@ -type compile_option() :: unicode | anchored | caseless | dollar_endonly | dotall | extended | firstline | multiline | no_auto_capture | dupnames | ungreedy - | {newline, nl_spec()}| bsr_anycrlf - | no_start_optimize | ucp | never_utf - | bsr_unicode. + | {newline, nl_spec()} + | bsr_anycrlf | bsr_unicode + | no_start_optimize | ucp | never_utf. %%% BIFs |