[DOC] Markup the literal false, and constant [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2021-11-05 08:51:13 +09:00
parent 30886be9f4
commit 53e2bba0dd
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

4
dir.rb
View File

@ -140,13 +140,13 @@ class Dir
# paths. # paths.
# #
# The results which matched single wildcard or character set are sorted in # The results which matched single wildcard or character set are sorted in
# binary ascending order, unless false is given as the optional +sort+ # binary ascending order, unless +false+ is given as the optional +sort+
# keyword argument. The order of an Array of pattern strings and braces # keyword argument. The order of an Array of pattern strings and braces
# are preserved. # are preserved.
# #
# Note that the pattern is not a regexp, it's closer to a shell glob. # Note that the pattern is not a regexp, it's closer to a shell glob.
# See File::fnmatch for the meaning of the +flags+ parameter. # See File::fnmatch for the meaning of the +flags+ parameter.
# Case sensitivity depends on your system (File::FNM_CASEFOLD is ignored). # Case sensitivity depends on your system (+File::FNM_CASEFOLD+ is ignored).
# #
# <code>*</code>:: # <code>*</code>::
# Matches any file. Can be restricted by other values in the glob. # Matches any file. Can be restricted by other values in the glob.