Skip to content

Commit

Permalink
docs consistency with label names
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus committed Jun 21, 2017
1 parent ec9dee0 commit 1fe85ad
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions packages/storage/src/bucket.js
Original file line number Diff line number Diff line change
Expand Up @@ -646,12 +646,15 @@ Bucket.prototype.deleteFiles = function(query, callback) {
* //-
* // Delete a single label.
* //-
* bucket.deleteLabels('label', function(err, metadata) {});
* bucket.deleteLabels('labelone', function(err, metadata) {});
*
* //-
* // Delete a specific set of labels.
* //-
* bucket.deleteLabels(['label', 'labeltwo'], function(err, metadata) {});
* bucket.deleteLabels([
* 'labelone',
* 'labeltwo'
* ], function(err, metadata) {});
*
* //-
* // If the callback is omitted, we'll return a Promise.
Expand Down Expand Up @@ -1148,7 +1151,7 @@ Bucket.prototype.makePublic = function(options, callback) {
*
* @example
* var labels = {
* label: 'labelvalue',
* labelone: 'labelonevalue',
* labeltwo: 'labeltwovalue'
* };
*
Expand Down

0 comments on commit 1fe85ad

Please sign in to comment.