mirror of
https://github.com/saymrwulf/risc0-curve25519-dalek-source.git
synced 2026-09-04 20:03:40 +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.
|
||||
// See LICENSE for licensing information.
|
||||
|
||||
///! This module defines wrappers over platform-specific SIMD types to make them
|
||||
///! more convenient to use.
|
||||
///!
|
||||
///! UNSAFETY: Everything in this module assumes that we're running on hardware
|
||||
///! which supports at least AVX2. This invariant *must* be enforced
|
||||
///! by the callers of this code.
|
||||
//! This module defines wrappers over platform-specific SIMD types to make them
|
||||
//! more convenient to use.
|
||||
//!
|
||||
//! UNSAFETY: Everything in this module assumes that we're running on hardware
|
||||
//! which supports at least AVX2. This invariant *must* be enforced
|
||||
//! by the callers of this code.
|
||||
use core::ops::{Add, AddAssign, BitAnd, BitAndAssign, BitXor, BitXorAssign, Sub};
|
||||
|
||||
use unsafe_target_feature::unsafe_target_feature;
|
||||
|
|
|
|||
Loading…
Reference in a new issue