From edc073479d04dd718512857804eebc6507380b52 Mon Sep 17 00:00:00 2001 From: Ian Manske Date: Sat, 12 Oct 2024 20:23:58 -0700 Subject: [PATCH] Fix typo --- crates/nu-command/src/debug/view_ir.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/debug/view_ir.rs b/crates/nu-command/src/debug/view_ir.rs index efbb9fc137..60dd086ea9 100644 --- a/crates/nu-command/src/debug/view_ir.rs +++ b/crates/nu-command/src/debug/view_ir.rs @@ -114,7 +114,7 @@ the declaration may not be in scope. val.try_into() .map(BlockId::new) .map_err(|_| ShellError::InvalidValue { - valid: "a non-negative interger".into(), + valid: "a non-negative integer".into(), actual: val.to_string(), span: target.span(), })?