1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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/trunk@23657 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-06-09 06:13:16 +00:00
parent 11fd9224f7
commit d1dd871707
2 changed files with 5 additions and 2 deletions

View file

@ -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.

2
dir.c
View file

@ -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.