Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove uses of subcommand synonyms in the examples #560

Merged
merged 1 commit into from
Jul 6, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,17 +183,17 @@ will be invoked.
To pin to a specific nightly:

```
rustup override add nightly-2014-12-18
rustup override set nightly-2014-12-18
```

Or a specific stable release:

```
rustup override add 1.0.0
rustup override set 1.0.0
```

To see the active toolchain use `rustup show`. To remove the override
and use the default toolchain again, `rustup override remove`.
and use the default toolchain again, `rustup override unset`.

## Toolchain specification

Expand Down
8 changes: 4 additions & 4 deletions src/rustup-cli/help.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ installed toolchains from the official release channels, then updates
rustup itself.

If given a toolchain argument then `update` updates that toolchain,
the same as `rustup toolchain update`.
the same as `rustup toolchain install`.

'toolchain' specifies a toolchain name, such as 'stable', 'nightly',
or '1.8.0'. For more information see `rustup help toolchain`.";
Expand Down Expand Up @@ -93,14 +93,14 @@ will be invoked.

To pin to a specific nightly:

rustup override add nightly-2014-12-18
rustup override set nightly-2014-12-18

Or a specific stable release:

rustup override add 1.0.0
rustup override set 1.0.0

To see the active toolchain use `rustup show`. To remove the override
and use the default toolchain again, `rustup override remove`.";
and use the default toolchain again, `rustup override unset`.";

pub static RUN_HELP: &'static str =
r"
Expand Down