Fix linter errors.

This commit is contained in:
go-jet 2019-07-19 10:46:41 +02:00
parent 733614d245
commit fd11c377b9
7 changed files with 12 additions and 12 deletions

View file

@ -144,5 +144,5 @@ func (u *updateStatementImpl) Exec(db execution.DB) (res sql.Result, err error)
}
func (u *updateStatementImpl) ExecContext(context context.Context, db execution.DB) (res sql.Result, err error) {
return execContext(u, db, context)
return execContext(context, u, db)
}