aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2018-11-22 01:46:04 +0900
committerGitHub <noreply@github.com>2018-11-22 01:46:04 +0900
commit0a64ab220b84d82bfcaef4f89c542b033a1ff997 (patch)
tree1bcedda7bee49ef07d3d0ed419796a298f8536a8 /sqlite3.go
parentMerge pull request #664 from bk521234/patch-1 (diff)
parentupgrade/package.go: Fix golint issue (diff)
downloadgolite-0a64ab220b84d82bfcaef4f89c542b033a1ff997.tar.gz
golite-0a64ab220b84d82bfcaef4f89c542b033a1ff997.tar.xz
Merge pull request #665 from mjtrangoni/fix-gometalinter-issues
Fix gometalinter issues
Diffstat (limited to 'sqlite3.go')
-rw-r--r--sqlite3.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlite3.go b/sqlite3.go
index d75e8b0..f2c2053 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -1376,7 +1376,7 @@ func (d *SQLiteDriver) Open(dsn string) (driver.Conn, error) {
// - Activate User Authentication
// Check if the user wants to activate User Authentication.
// If so then first create a temporary AuthConn to the database
- // This is possible because we are already succesfully authenticated.
+ // This is possible because we are already successfully authenticated.
//
// - Check if `sqlite_user`` table exists
// YES => Add the provided user from DSN as Admin User and
@@ -1387,7 +1387,7 @@ func (d *SQLiteDriver) Open(dsn string) (driver.Conn, error) {
// Create connection to SQLite
conn := &SQLiteConn{db: db, loc: loc, txlock: txlock}
- // Password Cipher has to be registerd before authentication
+ // Password Cipher has to be registered before authentication
if len(authCrypt) > 0 {
switch strings.ToUpper(authCrypt) {
case "SHA1":