Skip to content

Commit

Permalink
Remove backslash in glob pattern (#19524)
Browse files Browse the repository at this point in the history
  • Loading branch information
konsumlamm authored Feb 14, 2022
1 parent ed0dce7 commit 551225d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/pure/os.nim
Original file line number Diff line number Diff line change
Expand Up @@ -2131,7 +2131,7 @@ iterator walkPattern*(pattern: string): string {.tags: [ReadDirEffect], noWeirdT
## Iterate over all the files and directories that match the `pattern`.
##
## On POSIX this uses the `glob`:idx: call.
## `pattern` is OS dependent, but at least the `"\*.ext"`
## `pattern` is OS dependent, but at least the `"*.ext"`
## notation is supported.
##
## See also:
Expand All @@ -2150,7 +2150,7 @@ iterator walkFiles*(pattern: string): string {.tags: [ReadDirEffect], noWeirdTar
## Iterate over all the files that match the `pattern`.
##
## On POSIX this uses the `glob`:idx: call.
## `pattern` is OS dependent, but at least the `"\*.ext"`
## `pattern` is OS dependent, but at least the `"*.ext"`
## notation is supported.
##
## See also:
Expand All @@ -2167,7 +2167,7 @@ iterator walkDirs*(pattern: string): string {.tags: [ReadDirEffect], noWeirdTarg
## Iterate over all the directories that match the `pattern`.
##
## On POSIX this uses the `glob`:idx: call.
## `pattern` is OS dependent, but at least the `"\*.ext"`
## `pattern` is OS dependent, but at least the `"*.ext"`
## notation is supported.
##
## See also:
Expand Down

0 comments on commit 551225d

Please sign in to comment.