Correct the client package README

Fixes #8563.
pull/8613/head
Jonathan A. Sternberg 2017-07-20 14:56:04 -05:00
parent 8dfd1f8c7c
commit 206fff70c6
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ log.Printf("Found a total of %v records\n", count)
#### Find the last 10 _shapes_ records
```go
q := fmt.Sprintf("SELECT * FROM %s LIMIT %d", MyMeasurement, 20)
q := fmt.Sprintf("SELECT * FROM %s LIMIT %d", MyMeasurement, 10)
res, err = queryDB(clnt, q)
if err != nil {
log.Fatal(err)