From cc2edb4c650ab1e74a73e1e6cbdef549df6c7050 Mon Sep 17 00:00:00 2001 From: Kim Shrier Date: Sun, 10 Mar 2024 12:02:18 -0600 Subject: [PATCH] fix typo on Digest comment --- vlib/crypto/blake3/blake3.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/crypto/blake3/blake3.v b/vlib/crypto/blake3/blake3.v index ba0034ffe2ddaf..88c1ba194f7100 100644 --- a/vlib/crypto/blake3/blake3.v +++ b/vlib/crypto/blake3/blake3.v @@ -121,7 +121,7 @@ mut: // Digest holds the state needed to compute a Blake3 hash struct Digest { - key_words []u32 // these form the initial cahining value of a chunk + key_words []u32 // these form the initial chaining value of a chunk flags u32 // only the keyed_hash, derive_key_context, or derive_key_material bits mut: chunk_counter u64 // number of the next chunk to be created