From 25b90744b7c163818363994796a037e86c53dd8f Mon Sep 17 00:00:00 2001 From: Deep Panchal Date: Thu, 4 Apr 2024 02:59:52 -0500 Subject: [PATCH] fix simple typo in commandline_.rs (#12387) Fix typo in crates/nu-cli/src/commands/commandline/commandline_.rs `Replaceing` -> `Replacing` --- crates/nu-cli/src/commands/commandline/commandline_.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-cli/src/commands/commandline/commandline_.rs b/crates/nu-cli/src/commands/commandline/commandline_.rs index 3a66694979..941e746679 100644 --- a/crates/nu-cli/src/commands/commandline/commandline_.rs +++ b/crates/nu-cli/src/commands/commandline/commandline_.rs @@ -132,7 +132,7 @@ impl Command for Commandline { engine_state, &ShellError::GenericError { error: "`--replace (-r)` is deprecated".into(), - msg: "Replaceing the current contents of the buffer by `--replace (-p)` or positional argument is deprecated".into(), + msg: "Replacing the current contents of the buffer by `--replace (-p)` or positional argument is deprecated".into(), span: Some(call.arguments_span()), help: Some("Use `commandline edit --replace (-r)`".into()), inner: vec![],