about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKeith T. Star <uberfoo@me.com>2022-12-12 16:22:01 -0700
committerKeith T. Star <uberfoo@me.com>2022-12-12 16:22:01 -0700
commitc3329ba63a8ee9f361bec72dc90b97be93e0ca11 (patch)
treec7df1079aff06f20cd96eca1e5de3920f719a6a0
parent37d7de337903a558dbeb1e82c844fe915ab8ff25 (diff)
downloadrust-c3329ba63a8ee9f361bec72dc90b97be93e0ca11.tar.gz
rust-c3329ba63a8ee9f361bec72dc90b97be93e0ca11.zip
Minor grammar nit.
-rw-r--r--library/core/src/borrow.rs2
1 files changed, 1 insertions, 1 deletions
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<T>`].
 ///
 /// 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<T>` when it relies
 /// on the identical behavior of these additional trait implementations.