From 85c6047b71a15464e248c7b9cdab5e668468489e Mon Sep 17 00:00:00 2001 From: Antoine Stevan <44101798+amtoine@users.noreply.github.com> Date: Fri, 24 Nov 2023 19:03:07 +0100 Subject: [PATCH] fix the link to the `nu_scripts` in `std clip` deprecation (#11150) this is just a simple fix for the link to the `nu_scripts` introduced in https://github.com/nushell/nushell/pull/11097 :relieved: --- crates/nu-std/std/mod.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-std/std/mod.nu b/crates/nu-std/std/mod.nu index f156ed1b3..2c6a24092 100644 --- a/crates/nu-std/std/mod.nu +++ b/crates/nu-std/std/mod.nu @@ -149,7 +149,7 @@ export def clip [ print $"Warning: (char -u 26a0) (ansi yellow_bold)deprecated_command(ansi reset)" print "| the `std clip` command is deprecated and will be removed in Nushell 0.89" print "" - print $"(ansi cyan)help(ansi reset): please use (ansi {fg: cyan, attr: du})[`modules/system clip`]\(https://github.com/amtoine/nu_scripts/tree/main/modules#system\)(ansi reset)" + print $"(ansi cyan)help(ansi reset): please use (ansi {fg: cyan, attr: du})[`modules/system clip`]\(https://github.com/nushell/nu_scripts/tree/main/modules#system\)(ansi reset)" let input = $input | if $expand { table --expand } else { table }