From b60a0c0b5af60ead2f37ae86edaee98cf6082a6a Mon Sep 17 00:00:00 2001 From: lukechampine Date: Wed, 15 Jan 2020 23:50:45 -0500 Subject: [PATCH] fix typo --- blake3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blake3.go b/blake3.go index 076d3b2..9b33d93 100644 --- a/blake3.go +++ b/blake3.go @@ -193,7 +193,7 @@ func (n node) compress() [16]uint32 { // in two places. First, when a chunk node is being constructed, its cv is // overwritten with this value after each block of input is processed. Second, // when two nodes are merged into a parent, each of their chaining values -// supplies half of the new node's block. Second, when +// supplies half of the new node's block. func (n node) chainingValue() (cv [8]uint32) { full := n.compress() copy(cv[:], full[:8])