summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-21 09:13:48 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-21 09:13:48 +0000
commitd22db6cc4e07855a306e9087ef2ddf6dfaa26e35 (patch)
tree7ae140345491f84c53c6c60d0ca36ec75242ff50 /dir.c
parent22365d9c50da3733c070ea51fe6804d2f9fd91c1 (diff)
merges r23657 from trunk into ruby_1_9_1.
-- * dir.c (dir_s_glob): fixed rdoc. a patch from Joseph Pecoraro at [ruby-core:23767]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@23779 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dir.c b/dir.c
index 4754b75aef..5a46f1bfc2 100644
--- a/dir.c
+++ b/dir.c
@@ -1635,7 +1635,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.