@@ -165,7 +165,7 @@ function Bucket(storage, name) {
165165 * @param {function= } callback - The callback function.
166166 * @param {?error } callback.err - An error returned while making this
167167 * request.
168- * @param {object } callback.metadata - Tbe bucket's metadata.
168+ * @param {object } callback.metadata - The bucket's metadata.
169169 * @param {object } callback.apiResponse - The full API response.
170170 *
171171 * @example
@@ -277,7 +277,7 @@ function Bucket(storage, name) {
277277nodeutil . inherits ( Bucket , ServiceObject ) ;
278278
279279/**
280- * Combine mutliple files into one new file.
280+ * Combine multiple files into one new file.
281281 *
282282 * @resource [Objects: compose API Documentation]{@link https://cloud.google.com/storage/docs/json_api/v1/objects/compose}
283283 *
@@ -458,7 +458,7 @@ Bucket.prototype.createChannel = function(id, config, callback) {
458458 *
459459 * @param {object= } query - Query object. See {module:storage/bucket#getFiles}
460460 * for all of the supported properties.
461- * @param {boolean } query.force - Supress errors until all files have been
461+ * @param {boolean } query.force - Suppress errors until all files have been
462462 * processed.
463463 * @param {function } callback - The callback function.
464464 * @param {?error|?error[] } callback.err - An API error or array of errors from
@@ -701,7 +701,7 @@ Bucket.prototype.getFiles = function(query, callback) {
701701 * When specifying `includeFiles: true`, use `force: true` to delay execution of
702702 * your callback until all files have been processed. By default, the callback
703703 * is executed after the first error. Use `force` to queue such errors until all
704- * files have been procssed , after which they will be returned as an array as
704+ * files have been processed , after which they will be returned as an array as
705705 * the first argument to your callback.
706706 *
707707 * NOTE: This may cause the process to be long-running and use a high number of
@@ -817,7 +817,7 @@ Bucket.prototype.makePrivate = function(options, callback) {
817817 * When specifying `includeFiles: true`, use `force: true` to delay execution of
818818 * your callback until all files have been processed. By default, the callback
819819 * is executed after the first error. Use `force` to queue such errors until all
820- * files have been procssed , after which they will be returned as an array as
820+ * files have been processed , after which they will be returned as an array as
821821 * the first argument to your callback.
822822 *
823823 * NOTE: This may cause the process to be long-running and use a high number of
@@ -1081,7 +1081,7 @@ Bucket.prototype.upload = function(localPath, options, callback) {
10811081 * @private
10821082 *
10831083 * @param {object } options - Configuration object.
1084- * @param {boolean } options.force - Supress errors until all files have been
1084+ * @param {boolean } options.force - Suppress errors until all files have been
10851085 * processed.
10861086 * @param {boolean } options.private - Make files private.
10871087 * @param {boolean } options.public - Make files public.
0 commit comments