Spell lint correctly

This commit is contained in:
Kegan Dougal 2020-10-14 16:29:43 +01:00
parent a659d9ee3d
commit 80076bb440

View file

@ -22,7 +22,7 @@ func rollback(txn *sql.Tx) {
if txn == nil {
return
}
txn.Rollback() // noline: errcheck
txn.Rollback() // nolint: errcheck
}
func NewLatestEventsUpdater(ctx context.Context, d *Database, txn *sql.Tx, roomInfo types.RoomInfo) (*LatestEventsUpdater, error) {