Skip to content

Commit 053b369

Browse files
committed
Merge pull request #1243 from stephenplusplus/spp--spelfixes
testing: add spellchecker
2 parents 24fbcdc + 6a63948 commit 053b369

8 files changed

Lines changed: 14 additions & 14 deletions

File tree

lib/compute/snapshot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function Snapshot(scope, name) {
103103
get: true,
104104

105105
/**
106-
* Get the snapshots's metadata.
106+
* Get the snapshot's metadata.
107107
*
108108
* @resource [Snapshot Resource]{@link https://cloud.google.com/compute/docs/reference/v1/snapshots}
109109
* @resource [Snapshots: get API Documentation]{@link https://cloud.google.com/compute/docs/reference/v1/snapshots/get}

lib/datastore/request.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,8 +514,8 @@ DatastoreRequest.prototype.runQuery = function(query, callback) {
514514
*
515515
* @param {object|object[]} entities - Datastore key object(s).
516516
* @param {Key} entities.key - Datastore key object.
517-
* @param {string=} entities.method - Optional method to explicity use for save.
518-
* The choices include 'insert', 'update', and 'upsert'.
517+
* @param {string=} entities.method - Explicit method to use, either 'insert',
518+
* 'update', or 'upsert'.
519519
* @param {object|object[]} entities.data - Data to save with the provided key.
520520
* If you provide an array of objects, you must use the explicit syntax:
521521
* `name` for the name of the property and `value` for its value. You may

lib/pubsub/subscription.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ function Subscription(pubsub, options) {
273273

274274
/**
275275
* [IAM (Identity and Access Management)](https://cloud.google.com/pubsub/access_control)
276-
* allows you to set permissions on invidual resources and offers a wider
276+
* allows you to set permissions on individual resources and offers a wider
277277
* range of roles: editor, owner, publisher, subscriber, and viewer. This
278278
* gives you greater flexibility and allows you to set more fine-grained
279279
* access control.

lib/pubsub/topic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ function Topic(pubsub, name) {
163163

164164
/**
165165
* [IAM (Identity and Access Management)](https://cloud.google.com/pubsub/access_control)
166-
* allows you to set permissions on invidual resources and offers a wider
166+
* allows you to set permissions on individual resources and offers a wider
167167
* range of roles: editor, owner, publisher, subscriber, and viewer. This
168168
* gives you greater flexibility and allows you to set more fine-grained
169169
* access control.

lib/storage/bucket.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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) {
277277
nodeutil.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.

lib/storage/file.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,7 @@ File.prototype.getSignedPolicy = function(options, callback) {
11071107
* save the file as when the signed url is accessed. This is ignored if
11081108
* options.responseDisposition is set.
11091109
* @param {string=} options.responseDisposition - The
1110-
* response-content-disposition parameter (http://goo.gl/yMWxQV) of the
1110+
* [response-content-disposition parameter](http://goo.gl/yMWxQV) of the
11111111
* signed url.
11121112
* @param {string=} options.responseType - The response-content-type parameter
11131113
* of the signed url.

lib/storage/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ var util = require('../common/util.js');
7878
* will interact with your Google Cloud Storage bucket.
7979
*
8080
* To learn more about Cloud Storage, see the
81-
* [Google Cloud Storage overview](https://cloud.google.com/storage/docs/overview)
81+
* [Google Cloud Storage overview](https://cloud.google.com/storage/docs/overview).
8282
*
8383
* <h4>ACLs</h4>
8484
* Google Cloud Storage uses access control lists (ACLs) to manage object and

lib/translate/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ var util = require('../common/util.js');
5252
* The object returned from `gcloud.translate` lets you translate arbitrary
5353
* string input into thousands of other languages.
5454
*
55-
* To learn more about theTranslate API, see
55+
* To learn more about the Translate API, see
5656
* [Getting Started](https://cloud.google.com/translate/v2/getting_started).
5757
*
5858
* @resource [Getting Started]{@link https://cloud.google.com/translate/v2/getting_started}

0 commit comments

Comments
 (0)