Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rachit77 committed Dec 2, 2024
1 parent a4fab9f commit 1957d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func (db *pgDB) StoreMissingBatchKeys(ctx context.Context, bks []types.BatchKey)
for i, bk := range bks {
batchNumbers[i] = fmt.Sprintf("%d", bk.Number)
}
return fmt.Errorf("failed to store missing batches (batch number: %s): %w", strings.Join(batchNumbers, ", "), err)
return fmt.Errorf("failed to store missing batches (batch numbers: %s): %w", strings.Join(batchNumbers, ", "), err)
}

return nil
Expand Down

0 comments on commit 1957d6d

Please sign in to comment.