Rollup merge of #119232 - Takashiidobe:fix-doc-typos, r=JohnTitor

Fix doc typos

This PR fixes some typos I found while trawling through the rust source.
This commit is contained in:
Matthias Krüger 2023-12-23 16:23:55 +01:00 committed by GitHub
commit ea55fd8c7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

View File

@ -90,7 +90,7 @@ The target intends to match the corresponding Clang target for its `"C"` ABI.
## Platform requirements
The runtime should support the same set of APIs as any other supported wasi target for interacting with the host environment through the WASI standard. The runtime also should have implemetation of [wasi-threads proposal](https://github.com/WebAssembly/wasi-threads).
The runtime should support the same set of APIs as any other supported wasi target for interacting with the host environment through the WASI standard. The runtime also should have implementation of [wasi-threads proposal](https://github.com/WebAssembly/wasi-threads).
This target is not a stable target. This means that there are a few engines
which implement the `wasi-threads` feature and if they do they're likely behind a

View File

@ -415,9 +415,9 @@ warning: 1 warning emitted
## `redundant_explicit_links`
This lint is **warned by default**. It detects explicit links that are same
This lint is **warn-by-default**. It detects explicit links that are the same
as computed automatic links.
This usually means the explicit links is removeable. For example:
This usually means the explicit links are removeable. For example:
```rust
#![warn(rustdoc::redundant_explicit_links)] // note: unnecessary - warns by default.

View File

@ -107,7 +107,7 @@ fn poke_platypus() {}
fn tame_lion() {}
// This is UNEXPECTED, because 'windows' is a well known condition name,
// and because 'windows' doens't take any values,
// and because 'windows' doesn't take any values,
// and will cause a compiler warning (by default).
#[cfg(windows = "unix")]
fn tame_windows() {}

View File

@ -186,8 +186,8 @@ declare_rustdoc_lint! {
}
declare_rustdoc_lint! {
/// This lint is **warned by default**. It detects explicit links that are same
/// as computed automatic links. This usually means the explicit links is removeable.
/// This lint is **warn-by-default**. It detects explicit links that are the same
/// as computed automatic links. This usually means the explicit links are removeable.
/// This is a `rustdoc` only lint, see the documentation in the [rustdoc book].
///
/// [rustdoc book]: ../../../rustdoc/lints.html#redundant_explicit_links

View File

@ -494,7 +494,7 @@ pub fn check(path: &Path, bad: &mut bool) {
let mut err = |_| {
tidy_error!(bad, "{}: leading newline", file.display());
};
suppressible_tidy_err!(err, skip_leading_newlines, "mising leading newline");
suppressible_tidy_err!(err, skip_leading_newlines, "missing leading newline");
}
let mut err = |msg: &str| {
tidy_error!(bad, "{}: {}", file.display(), msg);