Issue #651: Fix of typo

https://github.com/mattn/go-sqlite3/issues/651
This commit is contained in:
=
2019-08-19 15:53:09 +02:00
parent d6f416f91c
commit 85bf186e05

View File

@@ -1867,7 +1867,7 @@ func (s *SQLiteStmt) query(ctx context.Context, args []namedValue) (driver.Rows,
return rows, nil
}
// LastInsertId teturn last inserted ID.
// LastInsertId return last inserted ID.
func (r *SQLiteResult) LastInsertId() (int64, error) {
return r.id, nil
}