1
0
mirror of https://github.com/DATA-DOG/go-sqlmock.git synced 2025-12-23 23:51:20 +02:00

Fixed some typos

This commit is contained in:
Theo
2019-02-27 19:44:03 +00:00
parent 7f7699b45e
commit 882c1d1daa
7 changed files with 13 additions and 14 deletions

View File

@@ -25,7 +25,6 @@ func (ni *NullInt) Scan(value interface{}) error {
ni.Integer, ni.Valid = 0, false
case int64:
const maxUint = ^uint(0)
const minUint = 0
const maxInt = int(maxUint >> 1)
const minInt = -maxInt - 1