From c008d45187924704d08533ef148f50b4a39dfb88 Mon Sep 17 00:00:00 2001 From: Marijn Schouten Date: Wed, 13 Apr 2022 13:33:09 +0200 Subject: [PATCH] Add a missing article Add a missing article --- library/core/src/convert/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/convert/mod.rs b/library/core/src/convert/mod.rs index c7a9a8183789f..077410fbd79db 100644 --- a/library/core/src/convert/mod.rs +++ b/library/core/src/convert/mod.rs @@ -112,7 +112,7 @@ pub const fn identity(x: T) -> T { /// /// - Unlike `AsRef`, [`Borrow`] has a blanket impl for any `T`, and can be used to accept either /// a reference or a value. -/// - [`Borrow`] also requires that [`Hash`], [`Eq`] and [`Ord`] for borrowed value are +/// - [`Borrow`] also requires that [`Hash`], [`Eq`] and [`Ord`] for a borrowed value are /// equivalent to those of the owned value. For this reason, if you want to /// borrow only a single field of a struct you can implement `AsRef`, but not [`Borrow`]. ///