Skip to content

Commit

Permalink
Fix typo in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalyisaev2 authored Oct 9, 2024
1 parent caa3b27 commit ec625d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ err := db.Query().Do( // Do retry operation on errors with best effort
return err // for auto-retry with driver
}
defer func() { _ = streamResult.Close(ctx) }() // cleanup resources
for s, err := range streamResult.ResultSets(ctx) {
for rs, err := range streamResult.ResultSets(ctx) {
if err != nil {
return err
}
Expand Down

0 comments on commit ec625d1

Please sign in to comment.