1
Fork 0

Rollup merge of #91681 - WaffleLapkin:patch-3, r=scottmcm

fix typo in `intrinsics::raw_eq` docs
This commit is contained in:
Matthias Krüger 2021-12-10 22:41:24 +01:00 committed by GitHub
commit 4286ade8c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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`,