Skip to content

Commit

Permalink
fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kimshrier committed Jan 1, 2024
1 parent 9dbcec9 commit 6f95d01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/crypto/blake3/blake3.v
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ pub fn Digest.new_keyed_hash(key []u8) !Digest {
return Digest.new(key_words, u32(Flags.keyed_hash))
}

// Digest.new_derive_key_hash initializes a Digest structure for a deriving a Blake3 key
// Digest.new_derive_key_hash initializes a Digest structure for deriving a Blake3 key
pub fn Digest.new_derive_key_hash(context []u8) !Digest {
mut context_digest := Digest.new(blake3.iv, u32(Flags.derive_key_context))!

Expand Down

0 comments on commit 6f95d01

Please sign in to comment.