forked from extern/nushell
fix links to the "think in nu" page in --help (#6348)
This commit uses `sed` on all the files of the code base to replace each and every instance of https://www.nushell.sh/book/thinking_in_nushell.html, which is a broken link, to https://www.nushell.sh/book/thinking_in_nu.html, which is the new URL to the book page. This exact command was ```nushell ls **/* -f | where type == file | each { |it| sed -i 's|https://www.nushell.sh/book/thinking_in_nushell.html|https://www.nushell.sh/book/thinking_in_nu.html|' $it.name } ``` Co-authored-by: amtoine <44101798+AntoineStevan@users.noreply.github.com>
This commit is contained in:
@ -28,7 +28,7 @@ impl Command for Def {
|
||||
|
||||
fn extra_usage(&self) -> &str {
|
||||
r#"This command is a parser keyword. For details, check:
|
||||
https://www.nushell.sh/book/thinking_in_nushell.html"#
|
||||
https://www.nushell.sh/book/thinking_in_nu.html"#
|
||||
}
|
||||
|
||||
fn is_parser_keyword(&self) -> bool {
|
||||
|
Reference in New Issue
Block a user