Skip to content

Commit 847ea43

Browse files
committed
Trivial README tweak for clarity
1 parent 571707d commit 847ea43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ Tables:
6868
showBlobs := false
6969
7070
// Run the query
71-
r, err := db.Query("justinclift", "Join Testing.sqlite", dbhub.Identifier{Branch: "master"}, showBlobs,
71+
result, err := db.Query("justinclift", "Join Testing.sqlite", dbhub.Identifier{Branch: "master"}, showBlobs,
7272
`SELECT table1.Name, table2.value
7373
FROM table1 JOIN table2
7474
USING (id)
7575
ORDER BY table1.id`)
7676
if err != nil {
7777
log.Fatal(err)
7878
}
79-
fmt.Printf("Query results (JSON):\n\t%v\n", r)
79+
fmt.Printf("Query results (JSON):\n\t%v\n", result)
8080
fmt.Println()
8181
```
8282

0 commit comments

Comments
 (0)