aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author1f604 <[email protected]>2023-06-21 12:23:06 +0100
committerJack O'Connor <[email protected]>2023-06-27 11:31:51 -0400
commite47e5706912dee41416d54b8193260b90f059b50 (patch)
tree9667c034b0c2241018e0b3504490201ca12e5bc5
parent3f396d223946f722ab060fe9377cd1cebacaf4c0 (diff)
Fix typo exendable -> extendable
-rw-r--r--c/blake3.c2
-rw-r--r--src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/c/blake3.c b/c/blake3.c
index dc343f9..692f4b0 100644
--- a/c/blake3.c
+++ b/c/blake3.c
@@ -254,7 +254,7 @@ INLINE size_t compress_parents_parallel(const uint8_t *child_chaining_values,
// As a special case when the SIMD degree is 1, this function will still return
// at least 2 outputs. This guarantees that this function doesn't perform the
// root compression. (If it did, it would use the wrong flags, and also we
-// wouldn't be able to implement exendable output.) Note that this function is
+// wouldn't be able to implement extendable output.) Note that this function is
// not used when the whole input is only 1 chunk long; that's a different
// codepath.
//
diff --git a/src/lib.rs b/src/lib.rs
index d046672..ac61fb2 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -673,7 +673,7 @@ fn compress_parents_parallel(
// As a special case when the SIMD degree is 1, this function will still return
// at least 2 outputs. This guarantees that this function doesn't perform the
// root compression. (If it did, it would use the wrong flags, and also we
-// wouldn't be able to implement exendable output.) Note that this function is
+// wouldn't be able to implement extendable output.) Note that this function is
// not used when the whole input is only 1 chunk long; that's a different
// codepath.
//