From ba0f069c319638f562248476cea51c00cd2c1456 Mon Sep 17 00:00:00 2001 From: Han Junghyuk <136320007+hanjunghyuk@users.noreply.github.com> Date: Mon, 31 Jul 2023 05:50:25 +0900 Subject: [PATCH] Turn bare URLs into cliclable links (#9854) This PR adds angle brackets to URLs, making them clickable when reading documentation. --- crates/nu-protocol/src/shell_error.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/nu-protocol/src/shell_error.rs b/crates/nu-protocol/src/shell_error.rs index 60278041c..00273d14c 100644 --- a/crates/nu-protocol/src/shell_error.rs +++ b/crates/nu-protocol/src/shell_error.rs @@ -269,7 +269,7 @@ pub enum ShellError { /// /// ## Resolution /// - /// It is very likely that this is a bug. Please file an issue at https://github.com/nushell/nushell/issues with relevant information. + /// It is very likely that this is a bug. Please file an issue at with relevant information. #[error("Nushell failed: {msg}.")] #[diagnostic( code(nu::shell::nushell_failed), @@ -283,7 +283,7 @@ pub enum ShellError { /// /// ## Resolution /// - /// It is very likely that this is a bug. Please file an issue at https://github.com/nushell/nushell/issues with relevant information. + /// It is very likely that this is a bug. Please file an issue at with relevant information. #[error("Nushell failed: {msg}.")] #[diagnostic( code(nu::shell::nushell_failed_spanned), @@ -302,7 +302,7 @@ pub enum ShellError { /// /// ## Resolution /// - /// It is very likely that this is a bug. Please file an issue at https://github.com/nushell/nushell/issues with relevant information. + /// It is very likely that this is a bug. Please file an issue at with relevant information. #[error("Nushell failed: {msg}.")] #[diagnostic(code(nu::shell::nushell_failed_help))] // Only use this one if Nushell completely falls over and hits a state that isn't possible or isn't recoverable