Skip to content

Commit

Permalink
Merge pull request #1243 from stephenplusplus/spp--spelfixes
Browse files Browse the repository at this point in the history
testing: add spellchecker
  • Loading branch information
callmehiphop committed Apr 18, 2016
2 parents 24fbcdc + 6a63948 commit 053b369
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion lib/compute/snapshot.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function Snapshot(scope, name) {
get: true,

/**
* Get the snapshots's metadata.
* Get the snapshot's metadata.
*
* @resource [Snapshot Resource]{@link https://cloud.google.com/compute/docs/reference/v1/snapshots}
* @resource [Snapshots: get API Documentation]{@link https://cloud.google.com/compute/docs/reference/v1/snapshots/get}
Expand Down
4 changes: 2 additions & 2 deletions lib/datastore/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -514,8 +514,8 @@ DatastoreRequest.prototype.runQuery = function(query, callback) {
*
* @param {object|object[]} entities - Datastore key object(s).
* @param {Key} entities.key - Datastore key object.
* @param {string=} entities.method - Optional method to explicity use for save.
* The choices include 'insert', 'update', and 'upsert'.
* @param {string=} entities.method - Explicit method to use, either 'insert',
* 'update', or 'upsert'.
* @param {object|object[]} entities.data - Data to save with the provided key.
* If you provide an array of objects, you must use the explicit syntax:
* `name` for the name of the property and `value` for its value. You may
Expand Down
2 changes: 1 addition & 1 deletion lib/pubsub/subscription.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ function Subscription(pubsub, options) {

/**
* [IAM (Identity and Access Management)](https://cloud.google.com/pubsub/access_control)
* allows you to set permissions on invidual resources and offers a wider
* allows you to set permissions on individual resources and offers a wider
* range of roles: editor, owner, publisher, subscriber, and viewer. This
* gives you greater flexibility and allows you to set more fine-grained
* access control.
Expand Down
2 changes: 1 addition & 1 deletion lib/pubsub/topic.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ function Topic(pubsub, name) {

/**
* [IAM (Identity and Access Management)](https://cloud.google.com/pubsub/access_control)
* allows you to set permissions on invidual resources and offers a wider
* allows you to set permissions on individual resources and offers a wider
* range of roles: editor, owner, publisher, subscriber, and viewer. This
* gives you greater flexibility and allows you to set more fine-grained
* access control.
Expand Down
12 changes: 6 additions & 6 deletions lib/storage/bucket.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ function Bucket(storage, name) {
* @param {function=} callback - The callback function.
* @param {?error} callback.err - An error returned while making this
* request.
* @param {object} callback.metadata - Tbe bucket's metadata.
* @param {object} callback.metadata - The bucket's metadata.
* @param {object} callback.apiResponse - The full API response.
*
* @example
Expand Down Expand Up @@ -277,7 +277,7 @@ function Bucket(storage, name) {
nodeutil.inherits(Bucket, ServiceObject);

/**
* Combine mutliple files into one new file.
* Combine multiple files into one new file.
*
* @resource [Objects: compose API Documentation]{@link https://cloud.google.com/storage/docs/json_api/v1/objects/compose}
*
Expand Down Expand Up @@ -458,7 +458,7 @@ Bucket.prototype.createChannel = function(id, config, callback) {
*
* @param {object=} query - Query object. See {module:storage/bucket#getFiles}
* for all of the supported properties.
* @param {boolean} query.force - Supress errors until all files have been
* @param {boolean} query.force - Suppress errors until all files have been
* processed.
* @param {function} callback - The callback function.
* @param {?error|?error[]} callback.err - An API error or array of errors from
Expand Down Expand Up @@ -701,7 +701,7 @@ Bucket.prototype.getFiles = function(query, callback) {
* When specifying `includeFiles: true`, use `force: true` to delay execution of
* your callback until all files have been processed. By default, the callback
* is executed after the first error. Use `force` to queue such errors until all
* files have been procssed, after which they will be returned as an array as
* files have been processed, after which they will be returned as an array as
* the first argument to your callback.
*
* NOTE: This may cause the process to be long-running and use a high number of
Expand Down Expand Up @@ -817,7 +817,7 @@ Bucket.prototype.makePrivate = function(options, callback) {
* When specifying `includeFiles: true`, use `force: true` to delay execution of
* your callback until all files have been processed. By default, the callback
* is executed after the first error. Use `force` to queue such errors until all
* files have been procssed, after which they will be returned as an array as
* files have been processed, after which they will be returned as an array as
* the first argument to your callback.
*
* NOTE: This may cause the process to be long-running and use a high number of
Expand Down Expand Up @@ -1081,7 +1081,7 @@ Bucket.prototype.upload = function(localPath, options, callback) {
* @private
*
* @param {object} options - Configuration object.
* @param {boolean} options.force - Supress errors until all files have been
* @param {boolean} options.force - Suppress errors until all files have been
* processed.
* @param {boolean} options.private - Make files private.
* @param {boolean} options.public - Make files public.
Expand Down
2 changes: 1 addition & 1 deletion lib/storage/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ File.prototype.getSignedPolicy = function(options, callback) {
* save the file as when the signed url is accessed. This is ignored if
* options.responseDisposition is set.
* @param {string=} options.responseDisposition - The
* response-content-disposition parameter (http://goo.gl/yMWxQV) of the
* [response-content-disposition parameter](http://goo.gl/yMWxQV) of the
* signed url.
* @param {string=} options.responseType - The response-content-type parameter
* of the signed url.
Expand Down
2 changes: 1 addition & 1 deletion lib/storage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ var util = require('../common/util.js');
* will interact with your Google Cloud Storage bucket.
*
* To learn more about Cloud Storage, see the
* [Google Cloud Storage overview](https://cloud.google.com/storage/docs/overview)
* [Google Cloud Storage overview](https://cloud.google.com/storage/docs/overview).
*
* <h4>ACLs</h4>
* Google Cloud Storage uses access control lists (ACLs) to manage object and
Expand Down
2 changes: 1 addition & 1 deletion lib/translate/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var util = require('../common/util.js');
* The object returned from `gcloud.translate` lets you translate arbitrary
* string input into thousands of other languages.
*
* To learn more about theTranslate API, see
* To learn more about the Translate API, see
* [Getting Started](https://cloud.google.com/translate/v2/getting_started).
*
* @resource [Getting Started]{@link https://cloud.google.com/translate/v2/getting_started}
Expand Down

0 comments on commit 053b369

Please sign in to comment.