Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
weiihann committed Sep 13, 2024
1 parent 8fc94e8 commit f3478de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/program.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func (p *Program) Format() error {
// Anything since compiler version 0.10.0 can be hashed directly. No extra overhead incurred.
p.Identifiers = applyReplacer(p.Identifiers, nullSkipReplacer)
} else {
// This is needed for backward compatibility with pre-0.10.0 contract artifacts.
// This is needed for backward compatibility with pre-0.10.0 contract artefacts.
p.Identifiers = applyReplacer(p.Identifiers, identifiersNullSkipReplacer)
}
p.MainScope = applyReplacer(p.MainScope, nullSkipReplacer)
Expand Down

0 comments on commit f3478de

Please sign in to comment.