From 9f6da95abd13ff22b04a2f9b5c3822e9a9d1beeb Mon Sep 17 00:00:00 2001 From: Waffle Maybe Date: Thu, 9 Dec 2021 02:23:11 +0300 Subject: [PATCH] fix typo in `intrinsics::raw_eq` docs --- library/core/src/intrinsics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/intrinsics.rs b/library/core/src/intrinsics.rs index edbc250eb0d0c..2eb2bb6c5d404 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`,