Skip to content

Commit fd0628b

Browse files
committed
Auto merge of #8738 - ehuss:rustup-links, r=alexcrichton
Update links to rustup docs. The rustup docs have moved, so update some of the documentation links.
2 parents 1ffdfb7 + fac70ee commit fd0628b

File tree

93 files changed

+131
-126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+131
-126
lines changed

src/doc/man/cargo.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ environment variable.
174174

175175
`$CARGO_HOME/bin/`\
176176
    Binaries installed by {{man "cargo-install" 1}} will be located here. If using
177-
rustup, executables distributed with Rust are also located here.
177+
[rustup], executables distributed with Rust are also located here.
178178

179179
`$CARGO_HOME/config.toml`\
180180
    The global configuration file. See [the reference](../reference/config.html)
@@ -198,6 +198,8 @@ downloaded dependencies.
198198
Please note that the internal structure of the `$CARGO_HOME` directory is not
199199
stable yet and may be subject to change.
200200

201+
[rustup]: https://rust-lang.github.io/rustup/
202+
201203
## EXAMPLES
202204

203205
1. Build a local package and all of its dependencies:

src/doc/man/generated_txt/cargo-bench.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,8 @@ OPTIONS
286286
If Cargo has been installed with rustup, and the first argument to
287287
cargo begins with +, it will be interpreted as a rustup toolchain
288288
name (such as +stable or +nightly). See the rustup documentation
289-
<https://github.com/rust-lang/rustup/> for more information about
290-
how toolchain overrides work.
289+
<https://rust-lang.github.io/rustup/overrides.html> for more
290+
information about how toolchain overrides work.
291291

292292
-h, --help
293293
Prints help information.

src/doc/man/generated_txt/cargo-build.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ OPTIONS
245245
If Cargo has been installed with rustup, and the first argument to
246246
cargo begins with +, it will be interpreted as a rustup toolchain
247247
name (such as +stable or +nightly). See the rustup documentation
248-
<https://github.com/rust-lang/rustup/> for more information about
249-
how toolchain overrides work.
248+
<https://rust-lang.github.io/rustup/overrides.html> for more
249+
information about how toolchain overrides work.
250250

251251
-h, --help
252252
Prints help information.

src/doc/man/generated_txt/cargo-check.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ OPTIONS
239239
If Cargo has been installed with rustup, and the first argument to
240240
cargo begins with +, it will be interpreted as a rustup toolchain
241241
name (such as +stable or +nightly). See the rustup documentation
242-
<https://github.com/rust-lang/rustup/> for more information about
243-
how toolchain overrides work.
242+
<https://rust-lang.github.io/rustup/overrides.html> for more
243+
information about how toolchain overrides work.
244244

245245
-h, --help
246246
Prints help information.

src/doc/man/generated_txt/cargo-clean.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ OPTIONS
111111
If Cargo has been installed with rustup, and the first argument to
112112
cargo begins with +, it will be interpreted as a rustup toolchain
113113
name (such as +stable or +nightly). See the rustup documentation
114-
<https://github.com/rust-lang/rustup/> for more information about
115-
how toolchain overrides work.
114+
<https://rust-lang.github.io/rustup/overrides.html> for more
115+
information about how toolchain overrides work.
116116

117117
-h, --help
118118
Prints help information.

src/doc/man/generated_txt/cargo-doc.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ OPTIONS
206206
If Cargo has been installed with rustup, and the first argument to
207207
cargo begins with +, it will be interpreted as a rustup toolchain
208208
name (such as +stable or +nightly). See the rustup documentation
209-
<https://github.com/rust-lang/rustup/> for more information about
210-
how toolchain overrides work.
209+
<https://rust-lang.github.io/rustup/overrides.html> for more
210+
information about how toolchain overrides work.
211211

212212
-h, --help
213213
Prints help information.

src/doc/man/generated_txt/cargo-fetch.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ OPTIONS
9898
If Cargo has been installed with rustup, and the first argument to
9999
cargo begins with +, it will be interpreted as a rustup toolchain
100100
name (such as +stable or +nightly). See the rustup documentation
101-
<https://github.com/rust-lang/rustup/> for more information about
102-
how toolchain overrides work.
101+
<https://rust-lang.github.io/rustup/overrides.html> for more
102+
information about how toolchain overrides work.
103103

104104
-h, --help
105105
Prints help information.

src/doc/man/generated_txt/cargo-fix.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,8 @@ OPTIONS
287287
If Cargo has been installed with rustup, and the first argument to
288288
cargo begins with +, it will be interpreted as a rustup toolchain
289289
name (such as +stable or +nightly). See the rustup documentation
290-
<https://github.com/rust-lang/rustup/> for more information about
291-
how toolchain overrides work.
290+
<https://rust-lang.github.io/rustup/overrides.html> for more
291+
information about how toolchain overrides work.
292292

293293
-h, --help
294294
Prints help information.

src/doc/man/generated_txt/cargo-generate-lockfile.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ OPTIONS
7474
If Cargo has been installed with rustup, and the first argument to
7575
cargo begins with +, it will be interpreted as a rustup toolchain
7676
name (such as +stable or +nightly). See the rustup documentation
77-
<https://github.com/rust-lang/rustup/> for more information about
78-
how toolchain overrides work.
77+
<https://rust-lang.github.io/rustup/overrides.html> for more
78+
information about how toolchain overrides work.
7979

8080
-h, --help
8181
Prints help information.

src/doc/man/generated_txt/cargo-init.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ OPTIONS
120120
If Cargo has been installed with rustup, and the first argument to
121121
cargo begins with +, it will be interpreted as a rustup toolchain
122122
name (such as +stable or +nightly). See the rustup documentation
123-
<https://github.com/rust-lang/rustup/> for more information about
124-
how toolchain overrides work.
123+
<https://rust-lang.github.io/rustup/overrides.html> for more
124+
information about how toolchain overrides work.
125125

126126
-h, --help
127127
Prints help information.

0 commit comments

Comments
 (0)