Skip to content

Commit 08734a6

Browse files
piggynlalerque
andcommitted
Fix errors in cargo fetch usage guide
Co-authored-by: Caleb Maclennan <[email protected]>
1 parent ea2a21c commit 08734a6

31 files changed

+40
-64
lines changed

src/doc/man/cargo-fetch.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# cargo-fetch(1)
22
{{*set actionverb="Fetch"}}
3+
{{*set target-default-to-all-arch=true}}
34

45
## NAME
56

@@ -13,7 +14,7 @@ cargo-fetch - Fetch dependencies of a package from the network
1314

1415
If a `Cargo.lock` file is available, this command will ensure that all of the
1516
git dependencies and/or registry dependencies are downloaded and locally
16-
available. Subsequent Cargo commands never touch the network after a `cargo
17+
available. Subsequent Cargo commands will be able to run offline after a `cargo
1718
fetch` unless the lock file changes.
1819

1920
If the lock file is not available, then this command will generate the lock

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SYNOPSIS
99
DESCRIPTION
1010
If a Cargo.lock file is available, this command will ensure that all of
1111
the git dependencies and/or registry dependencies are downloaded and
12-
locally available. Subsequent Cargo commands never touch the network
12+
locally available. Subsequent Cargo commands will be able to run offline
1313
after a cargo fetch unless the lock file changes.
1414

1515
If the lock file is not available, then this command will generate the
@@ -25,8 +25,8 @@ DESCRIPTION
2525
OPTIONS
2626
Fetch options
2727
--target triple
28-
Fetch for the given architecture. The default is the host
29-
architecture. The general format of the triple is
28+
Fetch for the given architecture. The default is all architectures.
29+
The general format of the triple is
3030
<arch><sub>-<vendor>-<sys>-<abi>. Run rustc --print target-list for
3131
a list of supported targets.
3232

src/doc/man/includes/options-target-triple.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{{#option "`--target` _triple_"}}
2-
{{actionverb}} for the given architecture. The default is the host
3-
architecture. The general format of the triple is
2+
{{actionverb}} for the given architecture.
3+
{{~#if target-default-to-all-arch}} The default is all architectures.
4+
{{~else}} The default is the host architecture.
5+
{{~/if}} The general format of the triple is
46
`<arch><sub>-<vendor>-<sys>-<abi>`. Run `rustc --print target-list` for a
57
list of supported targets.
68

src/doc/src/commands/cargo-bench.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,7 @@ be specified multiple times, which enables all specified features.</dd>
241241
<dl>
242242

243243
<dt class="option-term" id="option-cargo-bench---target"><a class="option-anchor" href="#option-cargo-bench---target"></a><code>--target</code> <em>triple</em></dt>
244-
<dd class="option-desc">Benchmark for the given architecture. The default is the host
245-
architecture. The general format of the triple is
244+
<dd class="option-desc">Benchmark for the given architecture. The default is the host architecture. The general format of the triple is
246245
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
247246
list of supported targets.</p>
248247
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-build.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,7 @@ be specified multiple times, which enables all specified features.</dd>
169169
<dl>
170170

171171
<dt class="option-term" id="option-cargo-build---target"><a class="option-anchor" href="#option-cargo-build---target"></a><code>--target</code> <em>triple</em></dt>
172-
<dd class="option-desc">Build for the given architecture. The default is the host
173-
architecture. The general format of the triple is
172+
<dd class="option-desc">Build for the given architecture. The default is the host architecture. The general format of the triple is
174173
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
175174
list of supported targets.</p>
176175
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-check.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,7 @@ be specified multiple times, which enables all specified features.</dd>
174174
<dl>
175175

176176
<dt class="option-term" id="option-cargo-check---target"><a class="option-anchor" href="#option-cargo-check---target"></a><code>--target</code> <em>triple</em></dt>
177-
<dd class="option-desc">Check for the given architecture. The default is the host
178-
architecture. The general format of the triple is
177+
<dd class="option-desc">Check for the given architecture. The default is the host architecture. The general format of the triple is
179178
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
180179
list of supported targets.</p>
181180
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-clean.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ Defaults to <code>target</code> in the root of the workspace.</dd>
5757

5858

5959
<dt class="option-term" id="option-cargo-clean---target"><a class="option-anchor" href="#option-cargo-clean---target"></a><code>--target</code> <em>triple</em></dt>
60-
<dd class="option-desc">Clean for the given architecture. The default is the host
61-
architecture. The general format of the triple is
60+
<dd class="option-desc">Clean for the given architecture. The default is the host architecture. The general format of the triple is
6261
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
6362
list of supported targets.</p>
6463
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-doc.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,7 @@ be specified multiple times, which enables all specified features.</dd>
152152
<dl>
153153

154154
<dt class="option-term" id="option-cargo-doc---target"><a class="option-anchor" href="#option-cargo-doc---target"></a><code>--target</code> <em>triple</em></dt>
155-
<dd class="option-desc">Document for the given architecture. The default is the host
156-
architecture. The general format of the triple is
155+
<dd class="option-desc">Document for the given architecture. The default is the host architecture. The general format of the triple is
157156
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
158157
list of supported targets.</p>
159158
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-fetch.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# cargo-fetch(1)
22

33

4+
45
## NAME
56

67
cargo-fetch - Fetch dependencies of a package from the network
@@ -13,7 +14,7 @@ cargo-fetch - Fetch dependencies of a package from the network
1314

1415
If a `Cargo.lock` file is available, this command will ensure that all of the
1516
git dependencies and/or registry dependencies are downloaded and locally
16-
available. Subsequent Cargo commands never touch the network after a `cargo
17+
available. Subsequent Cargo commands will be able to run offline after a `cargo
1718
fetch` unless the lock file changes.
1819

1920
If the lock file is not available, then this command will generate the lock
@@ -31,8 +32,7 @@ you plan to use Cargo without a network with the `--offline` flag.
3132

3233
<dl>
3334
<dt class="option-term" id="option-cargo-fetch---target"><a class="option-anchor" href="#option-cargo-fetch---target"></a><code>--target</code> <em>triple</em></dt>
34-
<dd class="option-desc">Fetch for the given architecture. The default is the host
35-
architecture. The general format of the triple is
35+
<dd class="option-desc">Fetch for the given architecture. The default is all architectures. The general format of the triple is
3636
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
3737
list of supported targets.</p>
3838
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-fix.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,7 @@ be specified multiple times, which enables all specified features.</dd>
254254
<dl>
255255

256256
<dt class="option-term" id="option-cargo-fix---target"><a class="option-anchor" href="#option-cargo-fix---target"></a><code>--target</code> <em>triple</em></dt>
257-
<dd class="option-desc">Fix for the given architecture. The default is the host
258-
architecture. The general format of the triple is
257+
<dd class="option-desc">Fix for the given architecture. The default is the host architecture. The general format of the triple is
259258
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
260259
list of supported targets.</p>
261260
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-install.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,7 @@ be specified multiple times, which enables all specified features.</dd>
201201
<dl>
202202

203203
<dt class="option-term" id="option-cargo-install---target"><a class="option-anchor" href="#option-cargo-install---target"></a><code>--target</code> <em>triple</em></dt>
204-
<dd class="option-desc">Install for the given architecture. The default is the host
205-
architecture. The general format of the triple is
204+
<dd class="option-desc">Install for the given architecture. The default is the host architecture. The general format of the triple is
206205
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
207206
list of supported targets.</p>
208207
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-package.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,7 @@ single quotes or double quotes around each pattern.</dd>
131131
<dl>
132132

133133
<dt class="option-term" id="option-cargo-package---target"><a class="option-anchor" href="#option-cargo-package---target"></a><code>--target</code> <em>triple</em></dt>
134-
<dd class="option-desc">Package for the given architecture. The default is the host
135-
architecture. The general format of the triple is
134+
<dd class="option-desc">Package for the given architecture. The default is the host architecture. The general format of the triple is
136135
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
137136
list of supported targets.</p>
138137
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-publish.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ format.</dd>
9797
<dl>
9898

9999
<dt class="option-term" id="option-cargo-publish---target"><a class="option-anchor" href="#option-cargo-publish---target"></a><code>--target</code> <em>triple</em></dt>
100-
<dd class="option-desc">Publish for the given architecture. The default is the host
101-
architecture. The general format of the triple is
100+
<dd class="option-desc">Publish for the given architecture. The default is the host architecture. The general format of the triple is
102101
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
103102
list of supported targets.</p>
104103
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-run.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,7 @@ be specified multiple times, which enables all specified features.</dd>
8787
<dl>
8888

8989
<dt class="option-term" id="option-cargo-run---target"><a class="option-anchor" href="#option-cargo-run---target"></a><code>--target</code> <em>triple</em></dt>
90-
<dd class="option-desc">Run for the given architecture. The default is the host
91-
architecture. The general format of the triple is
90+
<dd class="option-desc">Run for the given architecture. The default is the host architecture. The general format of the triple is
9291
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
9392
list of supported targets.</p>
9493
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-rustc.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,7 @@ be specified multiple times, which enables all specified features.</dd>
156156
<dl>
157157

158158
<dt class="option-term" id="option-cargo-rustc---target"><a class="option-anchor" href="#option-cargo-rustc---target"></a><code>--target</code> <em>triple</em></dt>
159-
<dd class="option-desc">Build for the given architecture. The default is the host
160-
architecture. The general format of the triple is
159+
<dd class="option-desc">Build for the given architecture. The default is the host architecture. The general format of the triple is
161160
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
162161
list of supported targets.</p>
163162
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-rustdoc.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,7 @@ be specified multiple times, which enables all specified features.</dd>
171171
<dl>
172172

173173
<dt class="option-term" id="option-cargo-rustdoc---target"><a class="option-anchor" href="#option-cargo-rustdoc---target"></a><code>--target</code> <em>triple</em></dt>
174-
<dd class="option-desc">Document for the given architecture. The default is the host
175-
architecture. The general format of the triple is
174+
<dd class="option-desc">Document for the given architecture. The default is the host architecture. The general format of the triple is
176175
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
177176
list of supported targets.</p>
178177
<p>This may also be specified with the <code>build.target</code>

src/doc/src/commands/cargo-test.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,7 @@ be specified multiple times, which enables all specified features.</dd>
250250
<dl>
251251

252252
<dt class="option-term" id="option-cargo-test---target"><a class="option-anchor" href="#option-cargo-test---target"></a><code>--target</code> <em>triple</em></dt>
253-
<dd class="option-desc">Test for the given architecture. The default is the host
254-
architecture. The general format of the triple is
253+
<dd class="option-desc">Test for the given architecture. The default is the host architecture. The general format of the triple is
255254
<code>&lt;arch&gt;&lt;sub&gt;-&lt;vendor&gt;-&lt;sys&gt;-&lt;abi&gt;</code>. Run <code>rustc --print target-list</code> for a
256255
list of supported targets.</p>
257256
<p>This may also be specified with the <code>build.target</code>

src/etc/man/cargo-bench.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,7 @@ Do not activate the \fBdefault\fR feature of the selected packages.
244244
.sp
245245
\fB\-\-target\fR \fItriple\fR
246246
.RS 4
247-
Benchmark for the given architecture. The default is the host
248-
architecture. The general format of the triple is
247+
Benchmark for the given architecture. The default is the host architecture. The general format of the triple is
249248
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
250249
list of supported targets.
251250
.sp

src/etc/man/cargo-build.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,7 @@ Do not activate the \fBdefault\fR feature of the selected packages.
156156
.sp
157157
\fB\-\-target\fR \fItriple\fR
158158
.RS 4
159-
Build for the given architecture. The default is the host
160-
architecture. The general format of the triple is
159+
Build for the given architecture. The default is the host architecture. The general format of the triple is
161160
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
162161
list of supported targets.
163162
.sp

src/etc/man/cargo-check.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,7 @@ Do not activate the \fBdefault\fR feature of the selected packages.
161161
.sp
162162
\fB\-\-target\fR \fItriple\fR
163163
.RS 4
164-
Check for the given architecture. The default is the host
165-
architecture. The general format of the triple is
164+
Check for the given architecture. The default is the host architecture. The general format of the triple is
166165
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
167166
list of supported targets.
168167
.sp

src/etc/man/cargo-clean.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ Defaults to \fBtarget\fR in the root of the workspace.
5151
.sp
5252
\fB\-\-target\fR \fItriple\fR
5353
.RS 4
54-
Clean for the given architecture. The default is the host
55-
architecture. The general format of the triple is
54+
Clean for the given architecture. The default is the host architecture. The general format of the triple is
5655
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
5756
list of supported targets.
5857
.sp

src/etc/man/cargo-doc.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,7 @@ Do not activate the \fBdefault\fR feature of the selected packages.
134134
.sp
135135
\fB\-\-target\fR \fItriple\fR
136136
.RS 4
137-
Document for the given architecture. The default is the host
138-
architecture. The general format of the triple is
137+
Document for the given architecture. The default is the host architecture. The general format of the triple is
139138
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
140139
list of supported targets.
141140
.sp

src/etc/man/cargo-fetch.1

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cargo\-fetch \- Fetch dependencies of a package from the network
1010
.SH "DESCRIPTION"
1111
If a \fBCargo.lock\fR file is available, this command will ensure that all of the
1212
git dependencies and/or registry dependencies are downloaded and locally
13-
available. Subsequent Cargo commands never touch the network after a \fBcargo fetch\fR unless the lock file changes.
13+
available. Subsequent Cargo commands will be able to run offline after a \fBcargo fetch\fR unless the lock file changes.
1414
.sp
1515
If the lock file is not available, then this command will generate the lock
1616
file before fetching the dependencies.
@@ -25,8 +25,7 @@ you plan to use Cargo without a network with the \fB\-\-offline\fR flag.
2525
.sp
2626
\fB\-\-target\fR \fItriple\fR
2727
.RS 4
28-
Fetch for the given architecture. The default is the host
29-
architecture. The general format of the triple is
28+
Fetch for the given architecture. The default is all architectures. The general format of the triple is
3029
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
3130
list of supported targets.
3231
.sp

src/etc/man/cargo-fix.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,7 @@ Do not activate the \fBdefault\fR feature of the selected packages.
256256
.sp
257257
\fB\-\-target\fR \fItriple\fR
258258
.RS 4
259-
Fix for the given architecture. The default is the host
260-
architecture. The general format of the triple is
259+
Fix for the given architecture. The default is the host architecture. The general format of the triple is
261260
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
262261
list of supported targets.
263262
.sp

src/etc/man/cargo-install.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,7 @@ Do not activate the \fBdefault\fR feature of the selected packages.
229229
.sp
230230
\fB\-\-target\fR \fItriple\fR
231231
.RS 4
232-
Install for the given architecture. The default is the host
233-
architecture. The general format of the triple is
232+
Install for the given architecture. The default is the host architecture. The general format of the triple is
234233
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
235234
list of supported targets.
236235
.sp

src/etc/man/cargo-package.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,7 @@ single quotes or double quotes around each pattern.
146146
.sp
147147
\fB\-\-target\fR \fItriple\fR
148148
.RS 4
149-
Package for the given architecture. The default is the host
150-
architecture. The general format of the triple is
149+
Package for the given architecture. The default is the host architecture. The general format of the triple is
151150
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
152151
list of supported targets.
153152
.sp

src/etc/man/cargo-publish.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ format.
9696
.sp
9797
\fB\-\-target\fR \fItriple\fR
9898
.RS 4
99-
Publish for the given architecture. The default is the host
100-
architecture. The general format of the triple is
99+
Publish for the given architecture. The default is the host architecture. The general format of the triple is
101100
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
102101
list of supported targets.
103102
.sp

src/etc/man/cargo-run.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ Do not activate the \fBdefault\fR feature of the selected packages.
6767
.sp
6868
\fB\-\-target\fR \fItriple\fR
6969
.RS 4
70-
Run for the given architecture. The default is the host
71-
architecture. The general format of the triple is
70+
Run for the given architecture. The default is the host architecture. The general format of the triple is
7271
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
7372
list of supported targets.
7473
.sp

src/etc/man/cargo-rustc.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,7 @@ Do not activate the \fBdefault\fR feature of the selected packages.
142142
.sp
143143
\fB\-\-target\fR \fItriple\fR
144144
.RS 4
145-
Build for the given architecture. The default is the host
146-
architecture. The general format of the triple is
145+
Build for the given architecture. The default is the host architecture. The general format of the triple is
147146
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
148147
list of supported targets.
149148
.sp

src/etc/man/cargo-rustdoc.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ Do not activate the \fBdefault\fR feature of the selected packages.
153153
.sp
154154
\fB\-\-target\fR \fItriple\fR
155155
.RS 4
156-
Document for the given architecture. The default is the host
157-
architecture. The general format of the triple is
156+
Document for the given architecture. The default is the host architecture. The general format of the triple is
158157
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
159158
list of supported targets.
160159
.sp

src/etc/man/cargo-test.1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,7 @@ Do not activate the \fBdefault\fR feature of the selected packages.
253253
.sp
254254
\fB\-\-target\fR \fItriple\fR
255255
.RS 4
256-
Test for the given architecture. The default is the host
257-
architecture. The general format of the triple is
256+
Test for the given architecture. The default is the host architecture. The general format of the triple is
258257
\fB<arch><sub>\-<vendor>\-<sys>\-<abi>\fR\&. Run \fBrustc \-\-print target\-list\fR for a
259258
list of supported targets.
260259
.sp

0 commit comments

Comments
 (0)