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 54555fe commit 8c83bb9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions packages/google-cloud-language/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# @google-cloud/language ([Alpha][versioning])
> Google Cloud Natural Language Client Library for Node.js
> Cloud Natural Language Client Library for Node.js
*Looking for more Google APIs than just Natural Language? You might want to check out [`google-cloud`][google-cloud].*

Expand Down Expand Up @@ -73,7 +73,7 @@ var language = require('@google-cloud/language')({

## 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-language/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@google-cloud/language",
"version": "0.8.0",
"author": "Google Inc.",
"description": "Google Cloud Natural Language Client Library for Node.js",
"description": "Cloud Natural Language Client Library for Node.js",
"contributors": [
{
"name": "Burcu Dogan",
Expand Down
18 changes: 9 additions & 9 deletions packages/google-cloud-language/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var v1 = require('./v1');
var Document = require('./document.js');

/**
* The [Google Cloud Natural Language](https://cloud.google.com/natural-language/docs)
* The [Cloud Natural Language](https://cloud.google.com/natural-language/docs)
* API provides natural language understanding technologies to developers,
* including sentiment analysis, entity recognition, and syntax analysis. This
* API is part of the larger Cloud Machine Learning API.
Expand All @@ -47,7 +47,7 @@ var Document = require('./document.js');
* @constructor
* @alias module:language
*
* @resource [Google Cloud Natural Language API Documentation]{@link https://cloud.google.com/natural-language/docs}
* @resource [Cloud Natural Language API Documentation]{@link https://cloud.google.com/natural-language/docs}
*
* @param {object} options - [Configuration object](#/docs).
*/
Expand Down Expand Up @@ -99,7 +99,7 @@ function Language(options) {
* language.annotate('Hello!', callback);
*
* //-
* // Or, provide a reference to a file hosted on Google Cloud Storage.
* // Or, provide a reference to a file hosted on Cloud Storage.
* //-
* var gcs = require('@google-cloud/storage')({
* projectId: 'grape-spaceship-123'
Expand Down Expand Up @@ -191,7 +191,7 @@ Language.prototype.annotate = function(content, options, callback) {
* language.detectEntities('Axel Foley is from Detroit', callback);
*
* //-
* // Or, provide a reference to a file hosted on Google Cloud Storage.
* // Or, provide a reference to a file hosted on Cloud Storage.
* //-
* var gcs = require('@google-cloud/storage')({
* projectId: 'grape-spaceship-123'
Expand Down Expand Up @@ -282,7 +282,7 @@ Language.prototype.detectEntities = function(content, options, callback) {
* language.detectSentiment('Hello!', callback);
*
* //-
* // Or, provide a reference to a file hosted on Google Cloud Storage.
* // Or, provide a reference to a file hosted on Cloud Storage.
* //-
* var gcs = require('@google-cloud/storage')({
* projectId: 'grape-spaceship-123'
Expand Down Expand Up @@ -364,7 +364,7 @@ Language.prototype.detectSentiment = function(content, options, callback) {
* language.detectSyntax('Axel Foley is from Detroit', callback);
*
* //-
* // Or, provide a reference to a file hosted on Google Cloud Storage.
* // Or, provide a reference to a file hosted on Cloud Storage.
* //-
* var gcs = require('@google-cloud/storage')({
* projectId: 'grape-spaceship-123'
Expand Down Expand Up @@ -445,7 +445,7 @@ Language.prototype.detectSyntax = function(content, options, callback) {
* var document = language.document('Inline content of an unknown type.');
*
* //-
* // Or, provide a reference to a file hosted on Google Cloud Storage.
* // Or, provide a reference to a file hosted on Cloud Storage.
* //-
* var gcs = require('@google-cloud/storage')({
* projectId: 'grape-spaceship-123'
Expand Down Expand Up @@ -490,7 +490,7 @@ Language.prototype.document = function(config) {
* var document = language.html('<h1>Document Title</h1>');
*
* //-
* // Or, provide a reference to a file hosted on Google Cloud Storage.
* // Or, provide a reference to a file hosted on Cloud Storage.
* //-
* var gcs = require('@google-cloud/storage')({
* projectId: 'grape-spaceship-123'
Expand Down Expand Up @@ -540,7 +540,7 @@ Language.prototype.html = function(content, options) {
* var document = language.text('This is using inline text content.');
*
* //-
* // Or, provide a reference to a file hosted on Google Cloud Storage.
* // Or, provide a reference to a file hosted on Cloud Storage.
* //-
* var gcs = require('@google-cloud/storage')({
* projectId: 'grape-spaceship-123'
Expand Down

0 comments on commit 8c83bb9

Please sign in to comment.