From 65fd44b71bf2a2c06bce0b78dd9fdecb17a7f4d9 Mon Sep 17 00:00:00 2001 From: NotTheDr01ds <32344964+NotTheDr01ds@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:42:48 -0400 Subject: [PATCH] Consistency in help examples --- crates/nu-command/src/filesystem/ucp.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/nu-command/src/filesystem/ucp.rs b/crates/nu-command/src/filesystem/ucp.rs index d99119c5e5..6077278c18 100644 --- a/crates/nu-command/src/filesystem/ucp.rs +++ b/crates/nu-command/src/filesystem/ucp.rs @@ -86,17 +86,17 @@ impl Command for UCp { }, Example { description: "Copy only if source file is newer than target file", - example: "cp -u a b", + example: "cp -u myfile newfile", result: None, }, Example { description: "Copy file preserving mode and timestamps attributes", - example: "cp --preserve [ mode timestamps ] a b", + example: "cp --preserve [ mode timestamps ] myfile newfile", result: None, }, Example { description: "Copy file erasing all attributes", - example: "cp --preserve [] a b", + example: "cp --preserve [] myfile newfile", result: None, }, Example {