From cbbb246a6dc0fe0f43adc48dd22e312439d4774f Mon Sep 17 00:00:00 2001 From: Sebastian Jung Date: Sun, 15 Dec 2019 13:56:26 +0100 Subject: [PATCH] update links to books --- Cargo.toml | 2 +- README.md | 8 ++++---- docs/commands/config.md | 2 +- docs/commands/help.md | 2 +- docs/commands/tags.md | 2 +- src/commands/help.rs | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 24d388781c..97766ecdc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ readme = "README.md" default-run = "nu" repository = "https://github.com/nushell/nushell" homepage = "https://www.nushell.sh" -documentation = "https://book.nushell.sh" +documentation = "https://www.nushell.sh/book/" [workspace] diff --git a/README.md b/README.md index b764df5688..e3b94b22fc 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,9 @@ Nu comes with a set of built-in commands (listed below). If a command is unknown # Learning more -There are a few good resources to learn about Nu. There is a [book](https://book.nushell.sh) about Nu that is currently in progress. The book focuses on using Nu and its core concepts. +There are a few good resources to learn about Nu. There is a [book](https://www.nushell.sh/book/) about Nu that is currently in progress. The book focuses on using Nu and its core concepts. -If you're a developer who would like to contribute to Nu, we're also working on a [book for developers](https://github.com/nushell/contributor-book/tree/master/en) to help you get started. There are also [good first issues](https://github.com/nushell/nushell/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) to help you dive in. +If you're a developer who would like to contribute to Nu, we're also working on a [book for developers](https://www.nushell.sh/contributor-book/) to help you get started. There are also [good first issues](https://github.com/nushell/nushell/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) to help you dive in. We also have an active [Discord](https://discord.gg/NtAbbGn) and [Twitter](https://twitter.com/nu_shell) if you'd like to come and chat with us. @@ -32,7 +32,7 @@ Try it in Gitpod. ## Local -Up-to-date installation instructions can be found in the [installation chapter of the book](https://book.nushell.sh/en/installation). **Windows users**: please note that Nu works on Windows 10 and does not currently have Windows 7/8.1 support. +Up-to-date installation instructions can be found in the [installation chapter of the book](https://www.nushell.sh/book/en/installation.html). **Windows users**: please note that Nu works on Windows 10 and does not currently have Windows 7/8.1 support. To build Nu, you will need to use the **latest stable (1.39 or later)** version of the compiler. @@ -52,7 +52,7 @@ To install Nu via cargo (make sure you have installed [rustup](https://rustup.rs cargo install nu ``` -You can also install Nu with all the bells and whistles (be sure to have installed the [dependencies](https://book.nushell.sh/en/installation#dependencies) for your platform): +You can also install Nu with all the bells and whistles (be sure to have installed the [dependencies](https://www.nushell.sh/book/en/installation.html#dependencies) for your platform): ``` cargo install nu --features=stable diff --git a/docs/commands/config.md b/docs/commands/config.md index 3998b0dea9..d034690a9d 100644 --- a/docs/commands/config.md +++ b/docs/commands/config.md @@ -43,4 +43,4 @@ Syntax: `config {flags}` > config --set [table_mode "light"] ``` -A more detailed description on how to use this command to configure Nu shell can be found in the configuration chapter of [Nu Book](https://book.nushell.sh/en/configuration). +A more detailed description on how to use this command to configure Nu shell can be found in the configuration chapter of [Nu Book](https://www.nushell.sh/book/en/configuration.html). diff --git a/docs/commands/help.md b/docs/commands/help.md index a232910c72..f994343b48 100644 --- a/docs/commands/help.md +++ b/docs/commands/help.md @@ -14,7 +14,7 @@ Here are some tips to help you get started. * help commands - list all available commands * help - display help about a particular command -You can also learn more at https://book.nushell.sh +You can also learn more at https://www.nushell.sh/book/ ``` ```shell diff --git a/docs/commands/tags.md b/docs/commands/tags.md index 2c80cc19cf..dacadb6c33 100644 --- a/docs/commands/tags.md +++ b/docs/commands/tags.md @@ -44,4 +44,4 @@ As of writing this, the only metadata returned includes: ## Reference More useful information on the `tags` command can be found by referencing [The -Nu Book's entry on Metadata](https://book.nushell.sh/en/metadata) +Nu Book's entry on Metadata](https://www.nushell.sh/book/en/metadata.html) diff --git a/src/commands/help.rs b/src/commands/help.rs index f1da71284b..64f6c86dbb 100644 --- a/src/commands/help.rs +++ b/src/commands/help.rs @@ -162,7 +162,7 @@ Here are some tips to help you get started. * help commands - list all available commands * help - display help about a particular command -You can also learn more at https://book.nushell.sh"#; +You can also learn more at https://www.nushell.sh/book/"#; let mut output_stream = VecDeque::new();