Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

File.fnmatchで実際の挙動と異なる表記を削除 #2841

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions refm/api/src/_builtin/File
Original file line number Diff line number Diff line change
Expand Up @@ -348,11 +348,10 @@ path が pattern にマッチすれば真を返します。そうでない場合
#@since 2.0.0
@param pattern パターンを文字列で指定します。ワイルドカードとして `*',
`?', `[]', `{}' が使用できます。
[[m:Dir.glob]] とは違って `**/' は使用できません。
#@else
@param pattern パターンを文字列で指定します。ワイルドカードとして `*',
`?', `[]' が使用できます。
[[m:Dir.glob]] とは違って`{}' や `**/' は使用できません。
[[m:Dir.glob]] とは違って`{}' は使用できません。
#@end
#@samplecode 例
%w(foo foobar bar).each {|f|
Expand Down
6 changes: 2 additions & 4 deletions refm/api/src/pathname.rd
Original file line number Diff line number Diff line change
Expand Up @@ -644,8 +644,7 @@ File.lchown(owner, group, self.to_s) と同じです。
--- fnmatch(pattern, *args) -> bool
File.fnmatch(pattern, self.to_s, *args) と同じです。

@param pattern パターンを文字列で指定します。ワイルドカードとして `*', `?', `[]' が使用できま
す。[[m:Dir.glob]] とは違って `{}' や `**/' は使用できません。
@param pattern パターンを文字列で指定します。

@param args [[m:File.fnmatch]] を参照してください。

Expand All @@ -663,8 +662,7 @@ path.fnmatch("TEST*", File::FNM_CASEFOLD) # => true
--- fnmatch?(pattern, *args) -> bool
File.fnmatch?(pattern, self.to_s, *args) と同じです。

@param pattern パターンを文字列で指定します。ワイルドカードとして `*', `?', `[]' が使用できま
す。[[m:Dir.glob]] とは違って `{}' や `**/' は使用できません。
@param pattern パターンを文字列で指定します。

@param args [[m:File.fnmatch]] を参照してください。

Expand Down