about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWaffle Maybe <waffle.lapkin@gmail.com>2021-12-09 02:23:11 +0300
committerGitHub <noreply@github.com>2021-12-09 02:23:11 +0300
commit9f6da95abd13ff22b04a2f9b5c3822e9a9d1beeb (patch)
tree0b25839d67de93e1efc061e7022c560c93f9ed18
parente6b883c74f49f32cb5d1cbad3457f2b8805a4a38 (diff)
downloadrust-9f6da95abd13ff22b04a2f9b5c3822e9a9d1beeb.tar.gz
rust-9f6da95abd13ff22b04a2f9b5c3822e9a9d1beeb.zip
fix typo in `intrinsics::raw_eq` docs
-rw-r--r--library/core/src/intrinsics.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/intrinsics.rs b/library/core/src/intrinsics.rs
index edbc250eb0d..2eb2bb6c5d4 100644
--- a/library/core/src/intrinsics.rs
+++ b/library/core/src/intrinsics.rs
@@ -1919,7 +1919,7 @@ extern "rust-intrinsic" {
 
     /// Determines whether the raw bytes of the two values are equal.
     ///
-    /// The is particularly handy for arrays, since it allows things like just
+    /// This is particularly handy for arrays, since it allows things like just
     /// comparing `i96`s instead of forcing `alloca`s for `[6 x i16]`.
     ///
     /// Above some backend-decided threshold this will emit calls to `memcmp`,