trie: fix misspell+lint

This commit is contained in:
Martin Holst Swende 2020-01-07 07:55:48 +01:00
parent c934699c0b
commit 4ce3930078
No known key found for this signature in database
GPG key ID: 683B438C05A5DDF0
2 changed files with 5 additions and 5 deletions

View file

@ -42,8 +42,8 @@ type Leaf struct {
// internal preallocated temp space, and also a callback that is invoked when // internal preallocated temp space, and also a callback that is invoked when
// leaves are committed. The leafs are passed through the `leafCh`, to allow // leaves are committed. The leafs are passed through the `leafCh`, to allow
// some level of paralellism. // some level of paralellism.
// By 'some level' of paralellism, it's still the case that all leaves will be // By 'some level' of parallelism, it's still the case that all leaves will be
// processed sequentially - onleaf will never be called in paralell or out of order. // processed sequentially - onleaf will never be called in parallel or out of order.
type committer struct { type committer struct {
tmp sliceBuffer tmp sliceBuffer
sha keccakState sha keccakState