about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2022-06-20 16:41:48 +0900
committerGitHub <noreply@github.com>2022-06-20 16:41:48 +0900
commitf459d8d6b9d8b07fd0bfb3d2a1031918a09583ec (patch)
treeb8037f4dfe663d0292640da1a6f0d4ddeae9feba
parente63570464332fd35c0bc501adff36ca224c7d716 (diff)
parent3ce6e125fa35b747fadb3a34f130943b11337b2e (diff)
downloadrust-f459d8d6b9d8b07fd0bfb3d2a1031918a09583ec.tar.gz
rust-f459d8d6b9d8b07fd0bfb3d2a1031918a09583ec.zip
Rollup merge of #98273 - Piturnah:patch-1, r=compiler-errors
Fix minor documentation typo

Fixes incorrect pluralisation of `crate` in documentation for rustc_trait_selection
-rw-r--r--compiler/rustc_trait_selection/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/lib.rs b/compiler/rustc_trait_selection/src/lib.rs
index e4da6172916..44ff3fd7306 100644
--- a/compiler/rustc_trait_selection/src/lib.rs
+++ b/compiler/rustc_trait_selection/src/lib.rs
@@ -1,4 +1,4 @@
-//! This crates defines the trait resolution method.
+//! This crate defines the trait resolution method.
 //!
 //! - **Traits.** Trait resolution is implemented in the `traits` module.
 //!