@@ -177,7 +177,7 @@ Storage storage = StorageOptions.getDefaultInstance().getService();
177177 ` ` `
178178
179179If no credentials are provided, ` google-cloud` will attempt to detect them from the environment
180- using `GoogleCredentials.getApplicationDefault ()` which will search for Default Application
180+ using `GoogleCredentials.getApplicationDefault ()` which will search for Application Default
181181Credentials in the following locations (in order):
182182
1831831. The credentials file pointed to by the ` GOOGLE_APPLICATION_CREDENTIALS` environment variable
@@ -497,8 +497,8 @@ Google Cloud Language (Beta)
497497
498498# ## Preview
499499
500- Here is a code snippet showing a simple usage example of LanguageServiceClient. The example assumes that either default application
501- credentials or a valid API key are available. (See [Authentication section](# authentication) for more information)
500+ Here is a code snippet showing a simple usage example of LanguageServiceClient. The example assumes that either Application Default
501+ Credentials or a valid API key are available. (See [Authentication section](# authentication) for more information)
502502` ` ` java
503503 try (LanguageServiceClient languageServiceClient = LanguageServiceClient.create ()) {
504504 Document document = Document.newBuilder().build ();
@@ -515,7 +515,7 @@ Google Cloud Vision (Beta)
515515# ## Preview
516516
517517Here is a code snippet showing a simple usage example of ImageAnnotatorClient.
518- The example assumes that either default application credentials or a valid API key
518+ The example assumes that either Application Default Credentials or a valid API key
519519are available. (See [Authentication section](# authentication) for more information)
520520` ` ` java
521521 try (ImageAnnotatorClient imageAnnotatorClient = ImageAnnotatorClient.create ()) {
@@ -731,8 +731,8 @@ Google Translation (Beta)
731731#### Preview
732732
733733Here' s a snippet showing a simple usage example. The example shows how to detect the language of
734- some text and how to translate some text. The example assumes that either default application
735- credentials or a valid API key are available. An API key stored in the ` GOOGLE_API_KEY` environment
734+ some text and how to translate some text. The example assumes that either Application Default
735+ Credentials or a valid API key are available. An API key stored in the ` GOOGLE_API_KEY` environment
736736variable will be automatically detected. Complete source code can be found at
737737[DetectLanguageAndTranslate.java](./google-cloud-examples/src/main/java/com/google/cloud/examples/translate/snippets/DetectLanguageAndTranslate.java).
738738
@@ -764,8 +764,8 @@ Google Cloud Speech (Alpha)
764764
765765# ## Preview
766766
767- Here is a code snippet showing a simple usage example of SpeechClient. The example assumes that either default application
768- credentials or a valid API key are available. (See [Authentication section](# authentication) for more information)
767+ Here is a code snippet showing a simple usage example of SpeechClient. The example assumes that either Application Default
768+ Credentials or a valid API key are available. (See [Authentication section](# authentication) for more information)
769769Note that you must provide a uri to a FLAC audio file to run this.
770770
771771` ` ` java
@@ -794,8 +794,8 @@ Google Cloud Trace (Alpha)
794794
795795# ## Preview
796796
797- Here is a code snippet showing a simple usage example of TraceServiceClient. The example assumes that either default application
798- credentials or a valid API key are available.
797+ Here is a code snippet showing a simple usage example of TraceServiceClient. The example assumes that either Application Default
798+ Credentials or a valid API key are available.
799799Note that you must [supply credentials](# authentication) and a project ID if running this snippet elsewhere.
800800` ` ` java
801801 try (TraceServiceClient traceServiceClient = TraceServiceClient.create ()) {
@@ -812,8 +812,8 @@ Google Cloud Video Intelligence (Alpha)
812812
813813# ## Preview
814814
815- Here is a code snippet showing a simple usage example of TraceServiceClient. The example assumes that either default application
816- credentials or a valid API key are available.
815+ Here is a code snippet showing a simple usage example of TraceServiceClient. The example assumes that either Application Default
816+ Credentials or a valid API key are available.
817817Note that you must [supply credentials](# authentication) and a project ID if running this snippet elsewhere.
818818` ` ` java
819819try (VideoIntelligenceServiceClient videoIntelligenceServiceClient =
0 commit comments