Skip to content

Commit 44596fa

Browse files
committed
Auto merge of #9484 - kklibo:master, r=ehuss
fix 6 typos Fixes #9483
2 parents 070e459 + 50da820 commit 44596fa

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/doc/src/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ replacement][replace].
204204
### Why is Cargo rebuilding my code?
205205

206206
Cargo is responsible for incrementally compiling crates in your project. This
207-
means that if you type `cargo build` twice the second one shouldn't rebuild you
207+
means that if you type `cargo build` twice the second one shouldn't rebuild your
208208
crates.io dependencies, for example. Nevertheless bugs arise and Cargo can
209209
sometimes rebuild code when you're not expecting it!
210210

src/doc/src/reference/features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ guide, consider adding the documentation there (for example, see [serde.rs]).
440440
If you have a binary project, consider documenting the features in the README
441441
or other documentation for the project (for example, see [sccache]).
442442

443-
Clearly documenting the features can set expectations about features
443+
Clearly documenting the features can set expectations about features that are
444444
considered "unstable" or otherwise shouldn't be used. For example, if there is
445445
an optional dependency, but you don't want users to explicitly list that
446446
optional dependency as a feature, exclude it from the documented list.

src/doc/src/reference/overriding-dependencies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ Note that this will actually resolve to two versions of the `uuid` crate. The
222222
`my-binary` crate will continue to use the 1.x.y series of the `uuid` crate but
223223
the `my-library` crate will use the `2.0.0` version of `uuid`. This will allow you
224224
to gradually roll out breaking changes to a crate through a dependency graph
225-
without being force to update everything all at once.
225+
without being forced to update everything all at once.
226226

227227
### Using `[patch]` with multiple versions
228228

src/doc/src/reference/source-replacement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ the crates that are present).
107107

108108
A "directory source" is similar to a local registry source where it contains a
109109
number of crates available on the local filesystem, suitable for vendoring
110-
dependencies. Directory sources are primarily managed the `cargo vendor`
110+
dependencies. Directory sources are primarily managed by the `cargo vendor`
111111
subcommand.
112112

113113
Directory sources are distinct from local registries though in that they contain

src/doc/src/reference/unstable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ Other possible string values of `strip` are `none`, `symbols`, and `off`. The de
847847

848848
You can also configure this option with the two absolute boolean values
849849
`true` and `false`. The former enables `strip` at its higher level, `symbols`,
850-
whilst the later disables `strip` completely.
850+
while the latter disables `strip` completely.
851851

852852
### rustdoc-map
853853
* Tracking Issue: [#8296](https://github.com/rust-lang/cargo/issues/8296)
@@ -1153,7 +1153,7 @@ cargo logout -Z credential-process
11531153
* RFC: [#2495](https://github.com/rust-lang/rfcs/blob/master/text/2495-min-rust-version.md)
11541154
* rustc Tracking Issue: [#65262](https://github.com/rust-lang/rust/issues/65262)
11551155

1156-
The `-Z rust-version` flag enables the reading the `rust-version` field in the
1156+
The `-Z rust-version` flag enables the reading of the `rust-version` field in the
11571157
Cargo manifest `package` section. This can be used by a package to state a minimal
11581158
version of the compiler required to build the package. An error is generated if
11591159
the version of rustc is older than the stated `rust-version`. The

0 commit comments

Comments
 (0)