aboutsummaryrefslogtreecommitdiff
path: root/c/blake3_neon.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/blake3_neon.c')
-rw-r--r--c/blake3_neon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/blake3_neon.c b/c/blake3_neon.c
index 90bdd57..53ce83c 100644
--- a/c/blake3_neon.c
+++ b/c/blake3_neon.c
@@ -34,7 +34,7 @@ INLINE uint32x4_t set4(uint32_t a, uint32_t b, uint32_t c, uint32_t d) {
}
INLINE uint32x4_t rot16_128(uint32x4_t x) {
- // The straightfoward implementation would be two shifts and an or, but that's
+ // The straightforward implementation would be two shifts and an or, but that's
// slower on microarchitectures we've tested. See
// https://github.com/BLAKE3-team/BLAKE3/pull/319.
// return vorrq_u32(vshrq_n_u32(x, 16), vshlq_n_u32(x, 32 - 16));