From b3a52a247f8f82446b7b98f111b3361d3641173c Mon Sep 17 00:00:00 2001 From: CAESIUS_TIM <60285058+CAESIUS-TIM@users.noreply.github.com> Date: Mon, 11 Dec 2023 20:42:55 +0800 Subject: [PATCH] :memo: Fix logical error in help glob (#11286) --- 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 982b8449ac..b8dd7c2822 100644 --- a/crates/nu-command/src/filesystem/glob.rs +++ b/crates/nu-command/src/filesystem/glob.rs @@ -74,7 +74,7 @@ impl Command for Glob { }, Example { description: - "Search for files and folders that begin with uppercase C and lowercase c", + "Search for files and folders that begin with uppercase C or lowercase c", example: r#"glob "[Cc]*""#, result: None, },