aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2021-10-21 16:36:32 -0400
committerJack O'Connor <[email protected]>2021-10-21 16:36:32 -0400
commit3c107b7dd282cea9fe5cc1e554cd45591d4af2fb (patch)
tree783755392f652c7551e05784f1588e224c6e198a
parent5957d7d48f0626bfa9cd21339b0db61c72391ebe (diff)
fix a comment typo
-rw-r--r--c/blake3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/blake3.c b/c/blake3.c
index bccf2e4..20b6bd0 100644
--- a/c/blake3.c
+++ b/c/blake3.c
@@ -349,8 +349,8 @@ INLINE void compress_subtree_to_parent_node(
// The second half of this loop condition is always true, and we just
// asserted it above. But GCC can't tell that it's always true, and if NDEBUG
// is set on platforms where MAX_SIMD_DEGREE_OR_2 == 2, GCC emits spurious
- // warnings here. GCC 8.5 is particular sensitive, so if you're changing this
- // code, test it against that version.
+ // warnings here. GCC 8.5 is particularly sensitive, so if you're changing
+ // this code, test it against that version.
while (num_cvs > 2 && num_cvs <= MAX_SIMD_DEGREE_OR_2) {
num_cvs =
compress_parents_parallel(cv_array, num_cvs, key, flags, out_array);