Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/storage/bucket.js
Original file line number Diff line number Diff line change
Expand Up @@ -347,10 +347,10 @@ Bucket.prototype.file = function(name, options) {
* @param {function} callback - The callback function.
*
* @example
* bucket.getFiles(function(err, files, nextQuery) {
* bucket.getFiles(function(err, files, nextQuery, apiResponse) {
* if (nextQuery) {
* // nextQuery will be non-null if there are more results.
* bucket.getFiles(nextQuery, function(err, files, nextQuery) {});
* bucket.getFiles(nextQuery, function(err, files, nextQ, apiResponse) {});
* }
*
* // The `metadata` property is populated for you with the metadata at the
Expand Down