core: fix typo in comments (#21181)

This commit is contained in:
Ev
2020-06-08 03:53:56 -04:00
committed by GitHub
parent 55f30db0ae
commit 88125d8bd0

View File

@ -235,7 +235,7 @@ func gatherForks(config *params.ChainConfig) []uint64 {
forks = append(forks, rule.Uint64())
}
}
// Sort the fork block numbers to permit chronologival XOR
// Sort the fork block numbers to permit chronological XOR
for i := 0; i < len(forks); i++ {
for j := i + 1; j < len(forks); j++ {
if forks[i] > forks[j] {