Skip to content

Commit

Permalink
update links to books
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Jung committed Dec 15, 2019
1 parent 4b9ef5a commit cbbb246
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -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]

Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -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.

Expand All @@ -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.

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/commands/config.md
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion docs/commands/help.md
Expand Up @@ -14,7 +14,7 @@ Here are some tips to help you get started.
* help commands - list all available commands
* help <command name> - 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
Expand Down
2 changes: 1 addition & 1 deletion docs/commands/tags.md
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion src/commands/help.rs
Expand Up @@ -162,7 +162,7 @@ Here are some tips to help you get started.
* help commands - list all available commands
* help <command name> - 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();

Expand Down

0 comments on commit cbbb246

Please sign in to comment.