Update sqlite3.go

Typo.
This commit is contained in:
Michael S. Manley 2015-03-05 11:49:48 -06:00
parent 519a1d07c4
commit 6a342ed1ac
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ func (d *SQLiteDriver) Open(dsn string) (driver.Conn, error) {
}
}
if !strings.HasPrefox(dsn, "file:") {
if !strings.HasPrefix(dsn, "file:") {
dsn = dsn[:pos]
}
}