aboutsummaryrefslogtreecommitdiffstats
path: root/dir.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-23 20:47:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-23 20:47:23 +0000
commitcb9da52cdedfd71d326ac83f72bd553373c7f815 (patch)
tree187c49ee25f811ab0fc3c76a666ddedaf240627e /dir.c
parenta1d416425796d192a7d30b89493971cfe9c4990e (diff)
downloadruby-cb9da52cdedfd71d326ac83f72bd553373c7f815.tar.gz
* dir.c (dir_s_glob): get rid of comment starter.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dir.c b/dir.c
index 23b9ecfd3d..a2e8e037c5 100644
--- a/dir.c
+++ b/dir.c
@@ -1733,8 +1733,8 @@ dir_s_aref(int argc, VALUE *argv, VALUE obj)
* regexp.
* <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:\\*"] will not work
- * use Dir["c:/*"] instead
+ * as part of a glob, i.e. Dir["c:\\foo*"] will not work
+ * use Dir["c:/foo*"] instead
*
* Dir["config.?"] #=> ["config.h"]
* Dir.glob("config.?") #=> ["config.h"]