Skip to content

Commit

Permalink
Fixed typo in error
Browse files Browse the repository at this point in the history
  • Loading branch information
jackphilippi authored and sylwiaszunejko committed Aug 26, 2024
1 parent 589b2aa commit 3007fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrate/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func FromFS(ctx context.Context, session gocqlx.Session, f fs.FS) error {
return fmt.Errorf("calculate checksum for %q: %s", fm[i], err)
}
if dbm[i].Checksum != c {
return fmt.Errorf("file %q was tempered with, expected md5 %s", fm[i], dbm[i].Checksum)
return fmt.Errorf("file %q was tampered with, expected md5 %s", fm[i], dbm[i].Checksum)
}
}

Expand Down

0 comments on commit 3007fd5

Please sign in to comment.