diff options
author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-04-08 07:31:46 +0000 |
---|---|---|
committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-04-08 07:31:46 +0000 |
commit | 6ce7986668a159de41534b70e777f2ed216f6e5c (patch) | |
tree | 80aa5c702fb070453a8d49930881c430d0d8dc6c /dir.c | |
parent | a38339d83d76d89983c94f11ced71c35a0d091a8 (diff) | |
download | ruby-6ce7986668a159de41534b70e777f2ed216f6e5c.tar.gz |
[DOC] `*` in glob matches `\n` too [ci skip]
```
File.fnmatch("a*b", "a\nb") # => true
/\Aa.*b\z/x.match?("a\nb") # => false
/\Aa.*b\z/mx.match?("a\nb") # => true
```
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dir.c')
-rw-r--r-- | dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2653,7 +2653,7 @@ dir_s_aref(int argc, VALUE *argv, VALUE obj) * * <code>*</code>:: * Matches any file. Can be restricted by other values in the glob. - * Equivalent to <code>/ .* /x</code> in regexp. + * Equivalent to <code>/ .* /mx</code> in regexp. * * <code>*</code>:: Matches all files * <code>c*</code>:: Matches all files beginning with <code>c</code> |