diff --git a/core/state/state_object.go b/core/state/state_object.go
index 73e9cb78ed3b663e0789d1d65a77f36b9b52efbc..138fcbdecde8b4e77577590e19de0f6407c778ad 100644
--- a/core/state/state_object.go
+++ b/core/state/state_object.go
@@ -228,7 +228,7 @@ func (s *stateObject) GetCommittedState(db Database, key common.Hash) common.Has
 		}
 		enc, err = s.db.snap.Storage(s.addrHash, crypto.Keccak256Hash(key.Bytes()))
 	}
-	// If snapshot unavailable or reading from it failed, load from the database
+	// If the snapshot is unavailable or reading from it fails, load from the database.
 	if s.db.snap == nil || err != nil {
 		if meter != nil {
 			// If we already spent time checking the snapshot, account for it