Skip to content
Snippets Groups Projects
Commit 852e5b04 authored by simonmar's avatar simonmar
Browse files

[project @ 2002-05-29 13:28:36 by simonmar]

doc fixes
parent 67ec37f1
No related branches found
No related tags found
No related merge requests found
......@@ -40,10 +40,10 @@ mkRegex s = unsafePerformIO (RE.regcomp s RE.regExtended)
-- case-sensitve options can be changed from the default settings.
mkRegexWithOpts
:: String -- ^ The regular expression to compile
-> Bool -- ^ 'True' @<=>@ \'@^@\' and \'@$@\' match the beginning and
-- end of individual lines respectively, and \'.\' does /not/
-> Bool -- ^ 'True' @\<=>@ '@^@' and '@$@' match the beginning and
-- end of individual lines respectively, and '.' does /not/
-- match the newline character.
-> Bool -- ^ 'True' @<=>@ matching is case-sensitive
-> Bool -- ^ 'True' @\<=>@ matching is case-sensitive
-> Regex -- ^ Returns: the compiled regular expression
mkRegexWithOpts s single_line case_sensitive
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment