Skip to content

Commit ad23f3c

Browse files
committed
docs: Edit "Basic usage" page
1 parent e0942b7 commit ad23f3c

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

doc/src/basics.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ install --help` for specifics on installing [toolchains].
1010
## Keeping Rust up to date
1111

1212
Rust is distributed on three different [release channels]: stable, beta, and
13-
nightly. `rustup` is configured to use the stable channel by default, which
14-
represents the latest release of Rust, and is released every six weeks.
13+
nightly. `rustup` uses the stable channel by default, which
14+
represents the latest release of Rust. Stable publishes new releases every six weeks.
1515

1616
[release channels]: concepts/channels.md
1717

18-
When a new version of Rust is released, you can type `rustup update` to update
19-
to it:
18+
When a new version of Rust is released, simply type `rustup update` to update:
2019

2120
```console
2221
$ rustup update
@@ -40,18 +39,17 @@ This is the essence of `rustup`.
4039

4140
## Keeping rustup up to date
4241

43-
Running `rustup update` also checks for updates to `rustup` and automatically
44-
installs the latest version. To manually check for updates and install the
45-
latest version of `rustup` without updating installed toolchains type `rustup
46-
self update`:
42+
Running `rustup update` also checks for updates to `rustup` itself and automatically
43+
installs the latest version. To manually update `rustup` only,
44+
without updating installed toolchains, type `rustup self update`:
4745

4846
```console
4947
$ rustup self update
5048
info: checking for self-updates
5149
info: downloading self-updates
5250
```
5351

54-
**Note**: `rustup` will automatically update itself at the end of any
55-
toolchain installation as well. You can prevent this automatic behaviour by
56-
passing the `--no-self-update` argument when running `rustup update` or
57-
`rustup toolchain install`.
52+
> **Note**: `rustup` will automatically update itself at the end of any toolchain installation as well.
53+
> You can prevent this automatic behaviour by passing the `--no-self-update` argument
54+
> when running `rustup update` or `rustup toolchain install`.
55+

0 commit comments

Comments
 (0)