aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go
diff options
context:
space:
mode:
authortpltnt <tpltnt.github@dropcut.net>2014-02-18 01:06:30 +0100
committertpltnt <tpltnt.github@dropcut.net>2014-02-18 01:06:30 +0100
commit487e651e19e08fd9a925a52740ac954904aa1985 (patch)
treee4274fffe9d1a8dfc74310ab2aa0f98d07097152 /sqlite3.go
parentUse goveralls -repotoken (diff)
downloadgolite-487e651e19e08fd9a925a52740ac954904aa1985.tar.gz
golite-487e651e19e08fd9a925a52740ac954904aa1985.tar.xz
tiny typo fix
Diffstat (limited to 'sqlite3.go')
-rw-r--r--sqlite3.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite3.go b/sqlite3.go
index 29166ed..af25769 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -399,7 +399,7 @@ func (s *SQLiteStmt) bind(args []driver.Value) error {
return nil
}
-// Query the statment with arguments. Return records.
+// Query the statement with arguments. Return records.
func (s *SQLiteStmt) Query(args []driver.Value) (driver.Rows, error) {
if err := s.bind(args); err != nil {
return nil, err