From 99da85c895c51e4512b1923f2fa0d040e2e1147e Mon Sep 17 00:00:00 2001 From: Petr Mikusek Date: Tue, 25 Jul 2017 19:02:40 +0200 Subject: [PATCH] trie: typo in comment --- trie/sync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trie/sync.go b/trie/sync.go index 9e8449431..1e4f8d87c 100644 --- a/trie/sync.go +++ b/trie/sync.go @@ -55,7 +55,7 @@ type SyncResult struct { // syncMemBatch is an in-memory buffer of successfully downloaded but not yet // persisted data items. type syncMemBatch struct { - batch map[common.Hash][]byte // In-memory membatch of recently ocmpleted items + batch map[common.Hash][]byte // In-memory membatch of recently completed items order []common.Hash // Order of completion to prevent out-of-order data loss }