diff options
author | mattn <mattn.jp@gmail.com> | 2014-02-18 09:13:53 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2014-02-18 09:13:53 +0900 |
commit | fb0ae124843f77b46af49646f8316c71106ab758 (patch) | |
tree | e4274fffe9d1a8dfc74310ab2aa0f98d07097152 /sqlite3.go | |
parent | Use goveralls -repotoken (diff) | |
parent | tiny typo fix (diff) | |
download | golite-fb0ae124843f77b46af49646f8316c71106ab758.tar.gz golite-fb0ae124843f77b46af49646f8316c71106ab758.tar.xz |
Merge pull request #110 from tpltnt/master
tiny typo fix
Diffstat (limited to 'sqlite3.go')
-rw-r--r-- | sqlite3.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |