diff options
author | Patrik Nyblom <[email protected]> | 2011-05-19 16:57:26 +0200 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2011-05-19 16:57:26 +0200 |
commit | 5f7fa62cbfa18b88fc254fe362b11367177d2673 (patch) | |
tree | 63010bb1eb221db6d8e50403506968d34669cd51 /lib/stdlib/src | |
parent | f85d382cd3f81cde9afedff2b777c08c8b68e07c (diff) | |
parent | be7c883a4d53050e5b58e7e805c947c1244ac747 (diff) | |
download | otp-5f7fa62cbfa18b88fc254fe362b11367177d2673.tar.gz otp-5f7fa62cbfa18b88fc254fe362b11367177d2673.tar.bz2 otp-5f7fa62cbfa18b88fc254fe362b11367177d2673.zip |
Merge branch 'pan/stdlib_doc_fixes/OTP-9318' into dev
* pan/stdlib_doc_fixes/OTP-9318:
Fixup of re doc and specs
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/re.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/src/re.erl b/lib/stdlib/src/re.erl index 02dbe60741..e08258a535 100644 --- a/lib/stdlib/src/re.erl +++ b/lib/stdlib/src/re.erl @@ -46,7 +46,7 @@ split(Subject,RE) -> -spec split(Subject, RE, Options) -> SplitList when Subject :: iodata() | unicode:charlist(), - RE :: mp() | iodata(), + RE :: mp() | iodata() | unicode:charlist(), Options :: [ Option ], Option :: anchored | global | notbol | noteol | notempty | {offset, non_neg_integer()} | {newline, nl_spec()} @@ -238,7 +238,7 @@ replace(Subject,RE,Replacement) -> -spec replace(Subject, RE, Replacement, Options) -> iodata() | unicode:charlist() when Subject :: iodata() | unicode:charlist(), - RE :: mp() | iodata(), + RE :: mp() | iodata() | unicode:charlist(), Replacement :: iodata() | unicode:charlist(), Options :: [Option], Option :: anchored | global | notbol | noteol | notempty |