Skip to content

Commit

Permalink
docs(bigquery): indicate provenance of the iterator package in README (
Browse files Browse the repository at this point in the history
  • Loading branch information
shollyman committed Jun 11, 2021
1 parent 922767b commit 64dc099
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bigquery/README.md
Expand Up @@ -36,12 +36,12 @@ if err != nil {
for {
var values []bigquery.Value
err := it.Next(&values)
if err == iterator.Done {
if err == iterator.Done { // from "google.golang.org/api/iterator"
break
}
if err != nil {
// TODO: Handle error.
}
fmt.Println(values)
}
```
```

0 comments on commit 64dc099

Please sign in to comment.