Rollup merge of #96006 - hkBst:patch-2, r=Dylan-DPC

Add a missing article

Add a missing article
This commit is contained in:
Dylan DPC 2022-04-13 17:35:37 +02:00 committed by GitHub
commit e95f2db98f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,7 +112,7 @@ pub const fn identity<T>(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`].
///