From 5467f1770791aedd1f92917c7562942138c79a8d Mon Sep 17 00:00:00 2001 From: Embers-of-the-Fire Date: Thu, 1 Aug 2024 09:28:26 +0800 Subject: [PATCH] fix: fix typo --- crates/nu-command/src/filesystem/umv.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/filesystem/umv.rs b/crates/nu-command/src/filesystem/umv.rs index 0c373a4a2c..0c10df9ab2 100644 --- a/crates/nu-command/src/filesystem/umv.rs +++ b/crates/nu-command/src/filesystem/umv.rs @@ -56,7 +56,7 @@ impl Command for UMv { .switch("interactive", "prompt before overwriting", Some('i')) .switch( "update", - "move and overwite only when the SOURCE file is newer than the destination file or when the destination file is missing", + "move and overwrite only when the SOURCE file is newer than the destination file or when the destination file is missing", Some('u') ) .switch("no-clobber", "do not overwrite an existing file", Some('n'))