Skip to content

Commit ecc5105

Browse files
committed
golint
1 parent 0dba8bb commit ecc5105

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

_example/mod_vtable/extension.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ package main
33
import (
44
"database/sql"
55
"fmt"
6-
"github.com/mattn/go-sqlite3"
76
"log"
7+
8+
"github.com/mattn/go-sqlite3"
89
)
910

1011
func main() {
@@ -29,8 +30,8 @@ func main() {
2930
}
3031
defer rows.Close()
3132
for rows.Next() {
32-
var id, full_name, description, html_url string
33-
rows.Scan(&id, &full_name, &description, &html_url)
34-
fmt.Printf("%s: %s\n\t%s\n\t%s\n\n", id, full_name, description, html_url)
33+
var id, fullName, description, htmlURL string
34+
rows.Scan(&id, &fullName, &description, &htmlURL)
35+
fmt.Printf("%s: %s\n\t%s\n\t%s\n\n", id, fullName, description, htmlURL)
3536
}
3637
}

0 commit comments

Comments
 (0)