From 9a5970dbfe9e084debb38935c942a9002bc363a9 Mon Sep 17 00:00:00 2001 From: calciumbe <192480234+calciumbe@users.noreply.github.com> Date: Mon, 23 Dec 2024 20:35:01 +0800 Subject: [PATCH] chacha20_poly1305: fix typo --- chacha20_poly1305/src/chacha20.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chacha20_poly1305/src/chacha20.rs b/chacha20_poly1305/src/chacha20.rs index 51d0e4b88..0a73ca368 100644 --- a/chacha20_poly1305/src/chacha20.rs +++ b/chacha20_poly1305/src/chacha20.rs @@ -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.