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

ruby-changes:21195

From: ayumin <ko1@a...>
Date: Sat, 10 Sep 2011 13:49:06 +0900 (JST)
Subject: [ruby-changes:21195] ayumin:r33244 (trunk): * dir.c: Two small documentation fixes. [Bug #5302]

ayumin	2011-09-10 13:43:12 +0900 (Sat, 10 Sep 2011)

  New Revision: 33244

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

  Log:
    * dir.c: Two small documentation fixes. [Bug #5302]

  Modified files:
    trunk/ChangeLog
    trunk/dir.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 33243)
+++ ChangeLog	(revision 33244)
@@ -1,3 +1,9 @@
+Sat Sep 10 13:38:20 2011  Ayumu AIZAWA  <ayumu.aizawa@g...>
+
+	* dir.c (dir_s_aref):
+	* dir.c (dir_entries): Two small documentation fixes.
+	  A patch from Aaron Lerch. [Bug #5302] [ruby-core:39404]
+
 Sat Sep 10 08:30:03 2011  Koichi Sasada  <ko1@a...>
 
 	* gc.c (GC_PROFILE_MORE_DETAIL, CALC_EXACT_MALLOC_SIZE):
Index: dir.c
===================================================================
--- dir.c	(revision 33243)
+++ dir.c	(revision 33244)
@@ -1779,7 +1779,7 @@
  *                          More than two literals may be specified.
  *                          Equivalent to pattern alternation in
  *                          regexp.
- *  <code>\</code>::        Escapes the next metacharacter.
+ *  <code> \ </code>::      Escapes the next metacharacter.
  *                          Note that this means you cannot use backslash in windows
  *                          as part of a glob, i.e. Dir["c:\\foo*"] will not work
  *                          use Dir["c:/foo*"] instead
@@ -1923,7 +1923,7 @@
  *                          Behaves exactly like character sets in
  *                          Regexp, including set negation
  *                          (<code>[^a-z]</code>).
- *  <code>\</code>::        Escapes the next metacharacter.
+ *  <code> \ </code>::      Escapes the next metacharacter.
  *
  *  <i>flags</i> is a bitwise OR of the <code>FNM_xxx</code>
  *  parameters. The same glob pattern and flags are used by

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

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