From 3ce6e125fa35b747fadb3a34f130943b11337b2e Mon Sep 17 00:00:00 2001 From: Peter Hebden Date: Mon, 20 Jun 2022 03:30:21 +0100 Subject: [PATCH] Fix minor documentation typo Incorrect pluralisation of `crate` --- compiler/rustc_trait_selection/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_trait_selection/src/lib.rs b/compiler/rustc_trait_selection/src/lib.rs index e4da6172916d9..44ff3fd73061e 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. //!