Skip to content

Commit

Permalink
docs: change Google Cloud to Cloud (#1995)
Browse files Browse the repository at this point in the history
  • Loading branch information
callmehiphop authored and stephenplusplus committed Mar 3, 2017
1 parent 358cbed commit aca44e4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/google-cloud-speech/README.md
Original file line number Diff line number Diff line change
@@ -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].*

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-speech/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions packages/google-cloud-speech/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
});
Expand Down Expand Up @@ -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}.
*
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-speech/src/v1beta1/speech_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit aca44e4

Please sign in to comment.