diff --git a/packages/google-cloud-language/README.md b/packages/google-cloud-language/README.md index d586725cbcc..c5ecfb6b059 100644 --- a/packages/google-cloud-language/README.md +++ b/packages/google-cloud-language/README.md @@ -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].* @@ -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 diff --git a/packages/google-cloud-language/package.json b/packages/google-cloud-language/package.json index 2e47b73d7a7..05da8992aa7 100644 --- a/packages/google-cloud-language/package.json +++ b/packages/google-cloud-language/package.json @@ -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", diff --git a/packages/google-cloud-language/src/index.js b/packages/google-cloud-language/src/index.js index 9cdc97b1523..02c8ec7d27f 100644 --- a/packages/google-cloud-language/src/index.js +++ b/packages/google-cloud-language/src/index.js @@ -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. @@ -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). */ @@ -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' @@ -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' @@ -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' @@ -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' @@ -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' @@ -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' @@ -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'