From 92ec7247312c415864fc58549466bb32e8f40319 Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Thu, 18 May 2017 09:45:23 +1200 Subject: [PATCH] Enable a doctest in base/regex.jl --- base/regex.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/regex.jl b/base/regex.jl index 3ea60fd7ff4f2d..75e8dcc70e8216 100644 --- a/base/regex.jl +++ b/base/regex.jl @@ -75,7 +75,7 @@ after the ending quote, to change its behaviour: For example, this regex has all three flags enabled: -```julia-repl +```jldoctest julia> match(r"a+.*b+.*?d\$"ism, "Goodbye,\\nOh, angry,\\nBad world\\n") RegexMatch("angry,\\nBad world") ```