Skip to content

Commit

Permalink
core/state: fix typos in comments (#23702)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsyodyssey authored Oct 10, 2021
1 parent a6a0609 commit 84bccd0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/state/journal.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ type journalEntry interface {
}

// journal contains the list of state modifications applied since the last state
// commit. These are tracked to be able to be reverted in case of an execution
// exception or revertal request.
// commit. These are tracked to be able to be reverted in the case of an execution
// exception or request for reversal.
type journal struct {
entries []journalEntry // Current changes tracked by the journal
dirties map[common.Address]int // Dirty accounts and the number of changes
}

// newJournal create a new initialized journal.
// newJournal creates a new initialized journal.
func newJournal() *journal {
return &journal{
dirties: make(map[common.Address]int),
Expand Down

0 comments on commit 84bccd0

Please sign in to comment.