소스 검색

trie: typo in comment

Petr Mikusek 8 년 전
부모
커밋
99da85c895
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      trie/sync.go

+ 1 - 1
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
 }