diff --git a/packages/google-cloud-language/src/index.js b/packages/google-cloud-language/src/index.js index 59999ca9520..b34ed1fc877 100644 --- a/packages/google-cloud-language/src/index.js +++ b/packages/google-cloud-language/src/index.js @@ -53,21 +53,17 @@ const gapic = Object.freeze({ * @module {object} @google-cloud/language * @alias nodejs-language * - * @example Install the client library with - * npm: + * @example Install the client library with npm: * npm install --save @google-cloud/language * * @example Import the client library: * const language = require('@google-cloud/language'); * - * @example Create a client that uses - * Application Default Credentials - * (ADC): - * let client = new language.LanguageServiceClient(); + * @example Create a client that uses Application Default Credentials (ADC): + * const client = new language.LanguageServiceClient(); * - * @example Create a client with - * explicit credentials: - * let client = new language.LanguageServiceClient({ + * @example Create a client with explicit credentials: + * const client = new language.LanguageServiceClient({ * projectId: 'your-project-id', * keyFilename: '/path/to/keyfile.json', * });