@@ -10,13 +10,12 @@ install --help` for specifics on installing [toolchains].
10
10
## Keeping Rust up to date
11
11
12
12
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.
15
15
16
16
[ release channels ] : concepts/channels.md
17
17
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:
20
19
21
20
``` console
22
21
$ rustup update
@@ -40,18 +39,17 @@ This is the essence of `rustup`.
40
39
41
40
## Keeping rustup up to date
42
41
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 ` :
47
45
48
46
``` console
49
47
$ rustup self update
50
48
info: checking for self-updates
51
49
info: downloading self-updates
52
50
```
53
51
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