* doc/re.rdoc (Repetition): fix typo. reported by Ori Avtalion

and patched by Zachary Scott.  [Bug #5947]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34411 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-02-01 00:50:17 +00:00
parent ea6101f8dd
commit aea7069f79
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Wed Feb 1 09:50:10 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
* doc/re.rdoc (Repetition): fix typo. reported by Ori Avtalion
and patched by Zachary Scott. [Bug #5947]
Tue Jan 24 11:38:05 2012 NARUSE, Yui <naruse@ruby-lang.org> Tue Jan 24 11:38:05 2012 NARUSE, Yui <naruse@ruby-lang.org>
* lib/uri/common.rb (URI.encode_www_form_component): initialize on * lib/uri/common.rb (URI.encode_www_form_component): initialize on

View file

@ -153,7 +153,7 @@ contrast, <i>lazy</i> matching makes the minimal amount of matches
necessary for overall success. A greedy metacharacter can be made lazy by necessary for overall success. A greedy metacharacter can be made lazy by
following it with <tt>?</tt>. following it with <tt>?</tt>.
# Both patterns below match the string. The fist uses a greedy # Both patterns below match the string. The first uses a greedy
# quantifier so '.+' matches '<a><b>'; the second uses a lazy # quantifier so '.+' matches '<a><b>'; the second uses a lazy
# quantifier so '.+?' matches '<a>'. # quantifier so '.+?' matches '<a>'.
/<.+>/.match("<a><b>") #=> #<MatchData "<a><b>"> /<.+>/.match("<a><b>") #=> #<MatchData "<a><b>">