mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-06 20:41:14 +00:00
Fix the doc comment in packed_simd.rs
This commit is contained in:
parent
502897109c
commit
50aa63532b
1 changed files with 6 additions and 6 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue