From 3f708959697abe40e75193e94a700ec15e712c91 Mon Sep 17 00:00:00 2001 From: 132ikl <132@ikl.sh> Date: Wed, 2 Apr 2025 18:31:59 -0400 Subject: [PATCH] Update crates/nu-command/src/filters/where_.rs Co-authored-by: Douglas <32344964+NotTheDr01ds@users.noreply.github.com> --- crates/nu-command/src/filters/where_.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/filters/where_.rs b/crates/nu-command/src/filters/where_.rs index f6ece970bf..d9caab1050 100644 --- a/crates/nu-command/src/filters/where_.rs +++ b/crates/nu-command/src/filters/where_.rs @@ -16,7 +16,7 @@ impl Command for Where { fn extra_description(&self) -> &str { r#"A condition is evaluated for each element of the input, and only elements which meet the condition are included in the output. -A condition can be either a "row condition", or a closure. A row condition is a special short-hand syntax to makes accessing fields easier. +A condition can be either a "row condition" or a closure. A row condition is a special short-hand syntax to simplify field access. Each element of the input can be accessed through the $it variable. On the left hand side of a row condition, any field name is automatically expanded to use $it.