diff --git a/packages/google-cloud-speech/README.md b/packages/google-cloud-speech/README.md index fb0d872e9ec..55cfd6f5866 100644 --- a/packages/google-cloud-speech/README.md +++ b/packages/google-cloud-speech/README.md @@ -1,5 +1,5 @@ # @google-cloud/speech ([Alpha][versioning]) -> Google Cloud Speech Client Library for Node.js +> Cloud Speech Client Library for Node.js *Looking for more Google APIs than just Speech? You might want to check out [`google-cloud`][google-cloud].* @@ -74,7 +74,7 @@ var speech = require('@google-cloud/speech')({ ## Authentication -It's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Google Cloud services. +It's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Cloud services. ### On Google Cloud Platform diff --git a/packages/google-cloud-speech/package.json b/packages/google-cloud-speech/package.json index c8202cbd38c..a2e00bd5d0c 100644 --- a/packages/google-cloud-speech/package.json +++ b/packages/google-cloud-speech/package.json @@ -2,7 +2,7 @@ "name": "@google-cloud/speech", "version": "0.6.0", "author": "Google Inc.", - "description": "Google Cloud Speech Client Library for Node.js", + "description": "Cloud Speech Client Library for Node.js", "contributors": [ { "name": "Burcu Dogan", diff --git a/packages/google-cloud-speech/src/index.js b/packages/google-cloud-speech/src/index.js index e2face8b39e..40b4d95c616 100644 --- a/packages/google-cloud-speech/src/index.js +++ b/packages/google-cloud-speech/src/index.js @@ -188,7 +188,7 @@ Speech.findFile_ = function(file, callback) { } if (is.string(file) && file.indexOf('gs://') === 0) { - // File is a Google Cloud Storage URI. + // File is a Cloud Storage URI. callback(null, { uri: file }); @@ -377,7 +377,7 @@ Speech.formatResults_ = function(resultSets, verboseMode) { * property, a `confidence` score from `0` - `100`, and an `alternatives` * array consisting of other transcription possibilities. * - * Google Cloud Speech sets the limits for the audio duration. For more + * Cloud Speech sets the limits for the audio duration. For more * information, see * [Content Limits]{@link https://cloud.google.com/speech/limits#content}. * diff --git a/packages/google-cloud-speech/src/v1beta1/speech_client.js b/packages/google-cloud-speech/src/v1beta1/speech_client.js index 6324dc235d2..e47df0ff403 100644 --- a/packages/google-cloud-speech/src/v1beta1/speech_client.js +++ b/packages/google-cloud-speech/src/v1beta1/speech_client.js @@ -50,7 +50,7 @@ var ALL_SCOPES = [ ]; /** - * Service that implements Google Cloud Speech API. + * Service that implements Cloud Speech API. * * This will be created through a builder function which can be obtained by the module. * See the following example of how to initialize the module and how to access to the builder.