summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-09 06:13:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-09 06:13:16 +0000
commitc7acdcb5c35ae6317cdd6c72283979f68180141e (patch)
tree56e5027341ce9721de52ed61872ad58636e25b47
parentd7233ef103fae4f7530986d7aae14b6ff1d0cefd (diff)
downloadruby-c7acdcb5c35ae6317cdd6c72283979f68180141e.tar.gz
ruby-c7acdcb5c35ae6317cdd6c72283979f68180141e.tar.xz
ruby-c7acdcb5c35ae6317cdd6c72283979f68180141e.zip
* dir.c (dir_s_glob): fixed rdoc. a patch from Joseph Pecoraro at
[ruby-core:23767]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23657 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--dir.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1c87870d3..f85e18612 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
-Tue Jun 9 15:11:07 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Tue Jun 9 15:13:14 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * dir.c (dir_s_glob): fixed rdoc. a patch from Joseph Pecoraro a
+ [ruby-core:23767].
* dir.c (sys_warning): get rid of type-punning function cast.
diff --git a/dir.c b/dir.c
index e0be174f6..5c7d00222 100644
--- a/dir.c
+++ b/dir.c
@@ -1652,7 +1652,7 @@ dir_s_aref(int argc, VALUE *argv, VALUE obj)
* match all files beginning with
* <code>c</code>; <code>*c</code> will match
* all files ending with <code>c</code>; and
- * <code>*c*</code> will match all files that
+ * <code>\*c\*</code> will match all files that
* have <code>c</code> in them (including at
* the beginning or end). Equivalent to
* <code>/ .* /x</code> in regexp.