Skip to content

Commit 096a9a4

Browse files
committed
Fix some typos in doc
Signed-off-by: mountcount <cuimoman@outlook.com>
1 parent bd12986 commit 096a9a4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/doc/unstable-book/src/compiler-flags/check-cfg.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ present in the list of expected values. If `"value"` is not in it, then `rustc`
3737
the future.*
3838

3939
To check for the _none_ value (ie `#[cfg(foo)]`) one can use the `none()` predicate inside
40-
`values()`: `values(none())`. It can be followed or precessed by any number of `"value"`.
40+
`values()`: `values(none())`. It can be followed or processed by any number of `"value"`.
4141

4242
To enable checking of values, but to provide an *none*/empty set of expected values
4343
(ie. expect `#[cfg(name)]`), use these forms:
@@ -163,7 +163,7 @@ fn poke_platypus() {}
163163
fn tame_lion() {}
164164
165165
#[cfg(windows = "unix")] // This condition is UNEXPECTED, as while 'windows' is a well known
166-
// condition name, it doens't expect any values
166+
// condition name, it doesn't expect any values
167167
fn tame_windows() {}
168168
```
169169

src/doc/unstable-book/src/compiler-flags/shell-argfiles.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ arguments from argfiles specified with `@shell:<path>`.
88

99
Because this feature controls the parsing of input arguments, the
1010
`-Zshell-argfiles` flag must be present before the argument specifying the
11-
shell-style arguemnt file.
11+
shell-style argument file.

0 commit comments

Comments
 (0)