[前][次][番号順一覧][スレッド一覧]

ruby-changes:24476

From: drbrain <ko1@a...>
Date: Wed, 25 Jul 2012 06:59:27 +0900 (JST)
Subject: [ruby-changes:24476] drbrain:r36527 (trunk): * doc/re.rdoc: Fix spelling

drbrain	2012-07-25 06:54:50 +0900 (Wed, 25 Jul 2012)

  New Revision: 36527

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=36527

  Log:
    * doc/re.rdoc:  Fix spelling

  Modified files:
    trunk/ChangeLog
    trunk/doc/re.rdoc

Index: doc/re.rdoc
===================================================================
--- doc/re.rdoc	(revision 36526)
+++ doc/re.rdoc	(revision 36527)
@@ -250,7 +250,7 @@
 The <tt>(?:</tt>...<tt>)</tt> construct provides grouping without
 capturing. That is, it combines the terms it contains into an atomic whole
 without creating a backreference. This benefits performance at the slight
-expense of readabilty.
+expense of readability.
 
     # The group of parentheses captures 'n' and the second 'ti'. The
     # second group is referred to later with the backreference \2
@@ -271,7 +271,7 @@
 subexpression must be abandoned and subsequently revisited. In this
 way <i>pat</i> is treated as a non-divisible whole. Atomic grouping is
 typically used to optimise patterns so as to prevent the regular
-expression engine from backtracking needlesly.
+expression engine from backtracking needlessly.
 
     # The <tt>"</tt> in the pattern below matches the first character of
     # the string, then <tt>.*</tt> matches <i>Quote"</i>. This causes the
@@ -594,7 +594,7 @@
     $+      #=> "c"
             # same as m[-1]
 
-These global variables are thread-local and method-local varaibles.
+These global variables are thread-local and method-local variables.
 
 == Performance
 
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 36526)
+++ ChangeLog	(revision 36527)
@@ -1,3 +1,7 @@
+Wed Jul 25 06:54:24 2012  Eric Hodel  <drbrain@s...>
+
+	* doc/re.rdoc:  Fix spelling
+
 Wed Jul 25 06:49:12 2012  Eric Hodel  <drbrain@s...>
 
 	* re.c (rb_reg_s_last_match):  Update $~ to reference Regexp

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]