From 85d58649ded657a0b150cf9fa3bf5586f3e42d95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Thu, 1 Aug 2019 10:39:15 +0300 Subject: [PATCH] ethdb/memorydb: fix comment type --- ethdb/memorydb/memorydb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethdb/memorydb/memorydb.go b/ethdb/memorydb/memorydb.go index 07433e7a39..346edc4381 100644 --- a/ethdb/memorydb/memorydb.go +++ b/ethdb/memorydb/memorydb.go @@ -198,7 +198,7 @@ func (db *Database) Stat(property string) (string, error) { } // Compact is not supported on a memory database, but there's no need either as -// a memory database doens't waste space anyway. +// a memory database doesn't waste space anyway. func (db *Database) Compact(start []byte, limit []byte) error { return nil }