From eb40744739ceeb6229411e43219c7720a0316a57 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 1 Feb 2012 00:50:17 +0000 Subject: * 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_2@34411 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- doc/re.rdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/re.rdoc b/doc/re.rdoc index 0dfd8e5164..04481268c3 100644 --- a/doc/re.rdoc +++ b/doc/re.rdoc @@ -153,7 +153,7 @@ contrast, lazy matching makes the minimal amount of matches necessary for overall success. A greedy metacharacter can be made lazy by following it with ?. - # 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 ''; the second uses a lazy # quantifier so '.+?' matches ''. /<.+>/.match("") #=> #"> -- cgit v1.2.3