Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Ethernal committed Dec 9, 2024
1 parent d7d411e commit 03fa820
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -486,9 +486,9 @@ func newReorgDetector(
}

func isNeeded(casesWhereNeeded, actualCases []string) bool {
for _, actaulCase := range actualCases {
for _, actualCase := range actualCases {
for _, caseWhereNeeded := range casesWhereNeeded {
if actaulCase == caseWhereNeeded {
if actualCase == caseWhereNeeded {
return true
}
}
Expand Down

0 comments on commit 03fa820

Please sign in to comment.