From: simonmar Date: Wed, 29 May 2002 13:28:36 +0000 (+0000) Subject: [project @ 2002-05-29 13:28:36 by simonmar] X-Git-Tag: nhc98-1-18-release~992 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=852e5b04e8a8ed6a2d71bfecda76a31c438a1fdb;p=haskell-directory.git [project @ 2002-05-29 13:28:36 by simonmar] doc fixes --- diff --git a/Text/Regex.hs b/Text/Regex.hs index 3dc0da9..62901a5 100644 --- a/Text/Regex.hs +++ b/Text/Regex.hs @@ -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