From c3329ba63a8ee9f361bec72dc90b97be93e0ca11 Mon Sep 17 00:00:00 2001 From: "Keith T. Star" Date: Mon, 12 Dec 2022 16:22:01 -0700 Subject: [PATCH] Minor grammar nit. --- library/core/src/borrow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/borrow.rs b/library/core/src/borrow.rs index fdd56cb4eaa..4a8302ee404 100644 --- a/library/core/src/borrow.rs +++ b/library/core/src/borrow.rs @@ -26,7 +26,7 @@ /// to be modified, it can additionally implement [`BorrowMut`]. /// /// Further, when providing implementations for additional traits, it needs -/// to be considered whether they should behave identical to those of the +/// to be considered whether they should behave identically to those of the /// underlying type as a consequence of acting as a representation of that /// underlying type. Generic code typically uses `Borrow` when it relies /// on the identical behavior of these additional trait implementations.