Fix typo in glob example description ("files for folders" → "files or folders") (#16206)

This pull request fixes a typo in the description of a `glob` example:

**Before:**
```
  Search for files for folders that do not begin with c, C, b, M, or s
  > glob "[!cCbMs]*"
```
**After:**
```
  Search for files or folders that do not begin with c, C, b, M, or s
  > glob "[!cCbMs]*"
```
This commit is contained in:
FLuX
2025-07-19 06:49:50 +07:00
committed by GitHub
parent 38009c714c
commit 16167a25ec

View File

@ -85,7 +85,7 @@ impl Command for Glob {
result: None,
},
Example {
description: "Search for files for folders that do not begin with c, C, b, M, or s",
description: "Search for files or folders that do not begin with c, C, b, M, or s",
example: r#"glob "[!cCbMs]*""#,
result: None,
},