From 3dc3fb2375e9b2296611734980e8ae38334622de Mon Sep 17 00:00:00 2001 From: gVisor bot Date: Tue, 6 Oct 2020 13:33:38 -0700 Subject: [PATCH] Fix typo in merkletree PiperOrigin-RevId: 335709552 --- pkg/merkletree/merkletree.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/merkletree/merkletree.go b/pkg/merkletree/merkletree.go index 4b4f9bd52..ccef83259 100644 --- a/pkg/merkletree/merkletree.go +++ b/pkg/merkletree/merkletree.go @@ -41,7 +41,7 @@ type Layout struct { blockSize int64 // digestSize is the size of a generated hash. digestSize int64 - // levelOffset contains the offset of the begnning of each level in + // levelOffset contains the offset of the beginning of each level in // bytes. The number of levels in the tree is the length of the slice. // The leaf nodes (level 0) contain hashes of blocks of the input data. // Each level N contains hashes of the blocks in level N-1. The highest