From 16167a25ec65558a27750648f0bf7ec7804895d8 Mon Sep 17 00:00:00 2001 From: FLuX Date: Sat, 19 Jul 2025 06:49:50 +0700 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20in=20glob=20example=20description?= =?UTF-8?q?=20("files=20for=20folders"=20=E2=86=92=20"files=20or=20folders?= =?UTF-8?q?")=20(#16206)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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]*" ``` --- crates/nu-command/src/filesystem/glob.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/filesystem/glob.rs b/crates/nu-command/src/filesystem/glob.rs index 29afb84bfe..9d9ec80a71 100644 --- a/crates/nu-command/src/filesystem/glob.rs +++ b/crates/nu-command/src/filesystem/glob.rs @@ -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, },