Skip to content
Open
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
8 changes: 4 additions & 4 deletions fs/walk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ export type { WalkEntry };
*
* @example Filter by regular expressions
*
* Setting the `match` option to `[/.s/]` will only include entries with the
* Setting the `match` option to `[/s/]` will only include entries with the
* letter `s` in their name.
*
* File structure:
Expand All @@ -423,7 +423,7 @@ export type { WalkEntry };
*
* @example Exclude by regular expressions
*
* Setting the `skip` option to `[/.s/]` will exclude entries with the letter
* Setting the `skip` option to `[/s/]` will exclude entries with the letter
* `s` in their name.
*
* File structure:
Expand Down Expand Up @@ -825,7 +825,7 @@ export async function* walk(
*
* @example Filter by regular expressions
*
* Setting the `match` option to `[/.s/]` will only include entries with the
* Setting the `match` option to `[/s/]` will only include entries with the
* letter `s` in their name.
*
* File structure:
Expand All @@ -852,7 +852,7 @@ export async function* walk(
*
* @example Exclude by regular expressions
*
* Setting the `skip` option to `[/.s/]` will exclude entries with the letter
* Setting the `skip` option to `[/s/]` will exclude entries with the letter
* `s` in their name.
*
* File structure:
Expand Down
Loading