mirror of
https://github.com/nushell/nushell.git
synced 2025-08-13 13:57:45 +02:00
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:
@ -85,7 +85,7 @@ impl Command for Glob {
|
|||||||
result: None,
|
result: None,
|
||||||
},
|
},
|
||||||
Example {
|
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]*""#,
|
example: r#"glob "[!cCbMs]*""#,
|
||||||
result: None,
|
result: None,
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user