From ba9e870709d59cfea8c84bb2ef8f217bd3923e79 Mon Sep 17 00:00:00 2001 From: sonots Date: Sat, 21 Oct 2017 23:36:53 +0000 Subject: [PATCH] * doc/regexp.rdoc: Fix regexp doc syntax highlighting patched by jlmuir (J. Lewis Muir) [fix GH-1678] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60325 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- doc/regexp.rdoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/regexp.rdoc b/doc/regexp.rdoc index 49fce51a8d..a6421a5e80 100644 --- a/doc/regexp.rdoc +++ b/doc/regexp.rdoc @@ -227,7 +227,7 @@ Capture groups can be referred to by name when defined with the constructs. /\$(?\d+)\.(?\d+)/.match("$3.67") - => # + #=> # /\$(?\d+)\.(?\d+)/.match("$3.67")[:dollars] #=> "3" Named groups can be backreferenced with \k<name>, @@ -607,9 +607,9 @@ regexp's encoding can be explicitly fixed by supplying Regexp.new: r = Regexp.new("a".force_encoding("iso-8859-1"),Regexp::FIXEDENCODING) - r =~"a\u3042" - #=> Encoding::CompatibilityError: incompatible encoding regexp match - (ISO-8859-1 regexp with UTF-8 string) + r =~ "a\u3042" + # raises Encoding::CompatibilityError: incompatible encoding regexp match + # (ISO-8859-1 regexp with UTF-8 string) == Special global variables