ruby-changes:22362
From: nobu <ko1@a...>
Date: Wed, 1 Feb 2012 09:51:21 +0900 (JST)
Subject: [ruby-changes:22362] nobu:r34411 (ruby_1_9_3, trunk, ruby_1_9_2): * doc/re.rdoc (Repetition): fix typo.  reported by Ori Avtalion
nobu 2012-02-01 09:50:17 +0900 (Wed, 01 Feb 2012) New Revision: 34411 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=34411 Log: * doc/re.rdoc (Repetition): fix typo. reported by Ori Avtalion and patched by Zachary Scott. [Bug #5947] Modified files: branches/ruby_1_9_2/ChangeLog branches/ruby_1_9_2/doc/re.rdoc branches/ruby_1_9_3/ChangeLog branches/ruby_1_9_3/doc/re.rdoc trunk/ChangeLog trunk/doc/re.rdoc Index: doc/re.rdoc =================================================================== --- doc/re.rdoc (revision 34410) +++ doc/re.rdoc (revision 34411) @@ -179,7 +179,7 @@ necessary for overall success. A greedy metacharacter can be made lazy by 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>'. /<.+>/.match("<a><b>") #=> #<MatchData "<a><b>"> Index: ChangeLog =================================================================== --- ChangeLog (revision 34410) +++ ChangeLog (revision 34411) @@ -1,3 +1,8 @@ +Wed Feb 1 09:50:10 2012 Nobuyoshi Nakada <nobu@r...> + + * doc/re.rdoc (Repetition): fix typo. reported by Ori Avtalion + and patched by Zachary Scott. [Bug #5947] + Wed Feb 1 06:38:54 2012 Nobuyoshi Nakada <nobu@r...> * io.c (argf_close): skip stdin, which should be readable again. Index: ruby_1_9_2/doc/re.rdoc =================================================================== --- ruby_1_9_2/doc/re.rdoc (revision 34410) +++ ruby_1_9_2/doc/re.rdoc (revision 34411) @@ -153,7 +153,7 @@ necessary for overall success. A greedy metacharacter can be made lazy by 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>'. /<.+>/.match("<a><b>") #=> #<MatchData "<a><b>"> Index: ruby_1_9_2/ChangeLog =================================================================== --- ruby_1_9_2/ChangeLog (revision 34410) +++ ruby_1_9_2/ChangeLog (revision 34411) @@ -1,3 +1,8 @@ +Wed Feb 1 09:50:10 2012 Nobuyoshi Nakada <nobu@r...> + + * 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@r...> * lib/uri/common.rb (URI.encode_www_form_component): initialize on Index: ruby_1_9_3/doc/re.rdoc =================================================================== --- ruby_1_9_3/doc/re.rdoc (revision 34410) +++ ruby_1_9_3/doc/re.rdoc (revision 34411) @@ -153,7 +153,7 @@ necessary for overall success. A greedy metacharacter can be made lazy by 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>'. /<.+>/.match("<a><b>") #=> #<MatchData "<a><b>"> Index: ruby_1_9_3/ChangeLog =================================================================== --- ruby_1_9_3/ChangeLog (revision 34410) +++ ruby_1_9_3/ChangeLog (revision 34411) @@ -1,3 +1,8 @@ +Wed Feb 1 09:50:10 2012 Nobuyoshi Nakada <nobu@r...> + + * 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@r...> * lib/uri/common.rb (URI.encode_www_form_component): initialize on -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/