Skip to content

Commit 56d60c6

Browse files
committed
Add introduction to basics chapter.
1 parent 7044699 commit 56d60c6

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

doc/src/basics.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
# Basic usage
22

3+
The `rustup` command-line has a built-in help system that provides more
4+
information about each command. Run `rustup help` for an overview. Detailed
5+
help for each subcommand is also available. For example, run `rustup toolchain
6+
install --help` for specifics on installing [toolchains].
7+
8+
[toolchains]: concepts/toolchains.md
9+
310
## Keeping Rust up to date
411

512
Rust is distributed on three different [release channels]: stable, beta, and
613
nightly. `rustup` is configured to use the stable channel by default, which
714
represents the latest release of Rust, and is released every six weeks.
815

9-
[release channels]: https://github.com/rust-lang/rfcs/blob/master/text/0507-release-channels.md
16+
[release channels]: concepts/channels.md
1017

1118
When a new version of Rust is released, you can type `rustup update` to update
1219
to it:

0 commit comments

Comments
 (0)