Correct HasPrefix method name

This commit is contained in:
Antoni Rościszewski 2015-03-05 18:23:57 +01:00
parent 519a1d07c4
commit 16f5b6415d
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]
}
}