From 0cf5dc11e3f7e857338faa070c5f0ebc9c77cf5f Mon Sep 17 00:00:00 2001 From: Erik Post Date: Mon, 16 Aug 2021 16:17:31 +0200 Subject: [PATCH] Fix 'Inimplemented' typo. (#3922) --- crates/nu-errors/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-errors/src/lib.rs b/crates/nu-errors/src/lib.rs index 6d78484ed..a0c242a21 100644 --- a/crates/nu-errors/src/lib.rs +++ b/crates/nu-errors/src/lib.rs @@ -625,7 +625,7 @@ impl ShellError { } ProximateShellError::UntaggedRuntimeError { reason } => Diagnostic::error().with_message(format!("Error: {}", reason)), - ProximateShellError::Unimplemented { reason } => Diagnostic::error().with_message(format!("Inimplemented: {}", reason)), + ProximateShellError::Unimplemented { reason } => Diagnostic::error().with_message(format!("Unimplemented: {}", reason)), };