chacha20_poly1305: fix typo

This commit is contained in:
calciumbe 2024-12-23 20:35:01 +08:00
parent bcf8580913
commit 9a5970dbfe
No known key found for this signature in database
GPG Key ID: 92A6C8D87253B95C
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ impl Nonce {
///
/// This type is attempting to be as close as possible to the experimental [`core::simd::u32x4`]
/// which at this time is feature gated and well beyond the project's MSRV. But ideally
/// an easy transistion can be made in the future.
/// an easy transition can be made in the future.
///
/// A few SIMD relevant design choices:
/// * Heavy use of inline functions to help the compiler recognize vectorizable sections.