@@ -178,7 +178,7 @@ Storage storage = StorageOptions.getDefaultInstance().getService();
178178 ` ` `
179179
180180If no credentials are provided, ` google-cloud` will attempt to detect them from the environment
181- using `GoogleCredentials.getApplicationDefault ()` which will search for Default Application
181+ using `GoogleCredentials.getApplicationDefault ()` which will search for Application Default
182182Credentials in the following locations (in order):
183183
1841841. The credentials file pointed to by the ` GOOGLE_APPLICATION_CREDENTIALS` environment variable
@@ -498,8 +498,8 @@ Google Cloud Language (Beta)
498498
499499# ## Preview
500500
501- Here is a code snippet showing a simple usage example of LanguageServiceClient. The example assumes that either default application
502- credentials or a valid API key are available. (See [Authentication section](# authentication) for more information)
501+ Here is a code snippet showing a simple usage example of LanguageServiceClient. The example assumes that either Application Default
502+ Credentials or a valid API key are available. (See [Authentication section](# authentication) for more information)
503503` ` ` java
504504 try (LanguageServiceClient languageServiceClient = LanguageServiceClient.create ()) {
505505 Document document = Document.newBuilder().build ();
@@ -516,7 +516,7 @@ Google Cloud Vision (Beta)
516516# ## Preview
517517
518518Here is a code snippet showing a simple usage example of ImageAnnotatorClient.
519- The example assumes that either default application credentials or a valid API key
519+ The example assumes that either Application Default Credentials or a valid API key
520520are available. (See [Authentication section](# authentication) for more information)
521521` ` ` java
522522 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create ()) {
@@ -751,8 +751,8 @@ Google Translation (Beta)
751751#### Preview
752752
753753Here' s a snippet showing a simple usage example. The example shows how to detect the language of
754- some text and how to translate some text. The example assumes that either default application
755- credentials or a valid API key are available. An API key stored in the ` GOOGLE_API_KEY` environment
754+ some text and how to translate some text. The example assumes that either Application Default
755+ Credentials or a valid API key are available. An API key stored in the ` GOOGLE_API_KEY` environment
756756variable will be automatically detected. Complete source code can be found at
757757[DetectLanguageAndTranslate.java](./google-cloud-examples/src/main/java/com/google/cloud/examples/translate/snippets/DetectLanguageAndTranslate.java).
758758
@@ -784,8 +784,8 @@ Google Cloud Speech (Alpha)
784784
785785# ## Preview
786786
787- Here is a code snippet showing a simple usage example of SpeechClient. The example assumes that either default application
788- credentials or a valid API key are available. (See [Authentication section](# authentication) for more information)
787+ Here is a code snippet showing a simple usage example of SpeechClient. The example assumes that either Application Default
788+ Credentials or a valid API key are available. (See [Authentication section](# authentication) for more information)
789789Note that you must provide a uri to a FLAC audio file to run this.
790790
791791` ` ` java
@@ -814,8 +814,8 @@ Google Cloud Trace (Alpha)
814814
815815# ## Preview
816816
817- Here is a code snippet showing a simple usage example of TraceServiceClient. The example assumes that either default application
818- credentials or a valid API key are available.
817+ Here is a code snippet showing a simple usage example of TraceServiceClient. The example assumes that either Application Default
818+ Credentials or a valid API key are available.
819819Note that you must [supply credentials](# authentication) and a project ID if running this snippet elsewhere.
820820` ` ` java
821821 try (TraceServiceClient traceServiceClient = TraceServiceClient.create ()) {
@@ -832,8 +832,8 @@ Google Cloud Video Intelligence (Alpha)
832832
833833# ## Preview
834834
835- Here is a code snippet showing a simple usage example of TraceServiceClient. The example assumes that either default application
836- credentials or a valid API key are available.
835+ Here is a code snippet showing a simple usage example of TraceServiceClient. The example assumes that either Application Default
836+ Credentials or a valid API key are available.
837837Note that you must [supply credentials](# authentication) and a project ID if running this snippet elsewhere.
838838` ` ` java
839839try (VideoIntelligenceServiceClient videoIntelligenceServiceClient =
0 commit comments