diff options
author | Henrik Nord <[email protected]> | 2011-11-10 11:37:12 +0100 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-11-10 11:37:17 +0100 |
commit | d57b774cd88f7e2775a39ad17f9bd44d9370658b (patch) | |
tree | a2bea9fe4e2aef3296399ea8c62dbd45d0653319 /lib/stdlib | |
parent | a4b82870313b04a51cc2d71f6d5a420b386cec68 (diff) | |
parent | 2a9dbb6b699025f18ca45eea0a99f6b6ea3070f0 (diff) | |
download | otp-d57b774cd88f7e2775a39ad17f9bd44d9370658b.tar.gz otp-d57b774cd88f7e2775a39ad17f9bd44d9370658b.tar.bz2 otp-d57b774cd88f7e2775a39ad17f9bd44d9370658b.zip |
Merge branch 'ss/re-split-doc-bug'
* ss/re-split-doc-bug:
Fix re:split spec not to accept option 'global'
OTP-9691
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/src/re.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/re.erl b/lib/stdlib/src/re.erl index 99bcbd722e..246d535943 100644 --- a/lib/stdlib/src/re.erl +++ b/lib/stdlib/src/re.erl @@ -48,7 +48,7 @@ split(Subject,RE) -> Subject :: iodata() | unicode:charlist(), RE :: mp() | iodata() | unicode:charlist(), Options :: [ Option ], - Option :: anchored | global | notbol | noteol | notempty + Option :: anchored | notbol | noteol | notempty | {offset, non_neg_integer()} | {newline, nl_spec()} | bsr_anycrlf | bsr_unicode | {return, ReturnType} | {parts, NumParts} | group | trim | CompileOpt, |