Skip to content

Commit

Permalink
readme: remove nextQuery from BigQuery example
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus committed Jul 15, 2015
1 parent 82bd654 commit 07ceb99
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 @@ -105,7 +105,7 @@ schoolsDataset.import('/local/file.json', function(err, job) {});
var job = bigquery.job('job-id');

// Use a callback.
job.getQueryResults(function(err, rows, nextQuery) {});
job.getQueryResults(function(err, rows) {});

// Or get the same results as a readable stream.
job.getQueryResults().on('data', function(row) {});
Expand Down

0 comments on commit 07ceb99

Please sign in to comment.