Fix the doc comment in packed_simd.rs

This commit is contained in:
Jan Bujak 2023-06-05 07:42:36 +00:00
parent 502897109c
commit 50aa63532b
No known key found for this signature in database
GPG key ID: 3B438F83D43341D4

View file

@ -3,12 +3,12 @@
// This file is part of curve25519-dalek. // This file is part of curve25519-dalek.
// See LICENSE for licensing information. // See LICENSE for licensing information.
///! This module defines wrappers over platform-specific SIMD types to make them //! This module defines wrappers over platform-specific SIMD types to make them
///! more convenient to use. //! more convenient to use.
///! //!
///! UNSAFETY: Everything in this module assumes that we're running on hardware //! UNSAFETY: Everything in this module assumes that we're running on hardware
///! which supports at least AVX2. This invariant *must* be enforced //! which supports at least AVX2. This invariant *must* be enforced
///! by the callers of this code. //! by the callers of this code.
use core::ops::{Add, AddAssign, BitAnd, BitAndAssign, BitXor, BitXorAssign, Sub}; use core::ops::{Add, AddAssign, BitAnd, BitAndAssign, BitXor, BitXorAssign, Sub};
use unsafe_target_feature::unsafe_target_feature; use unsafe_target_feature::unsafe_target_feature;