Skip to content

Commit b717cd3

Browse files
committed
Merge pull request GoogleCloudPlatform#32 from GoogleCloudPlatform/eg
"eg" -> "e.g."
2 parents b60233e + b3a4d2a commit b717cd3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bigquery/src/main/java/com/google/cloud/bigquery/samples/BigqueryServiceFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ private static Bigquery createAuthorizedClient() throws IOException {
8080
JsonFactory jsonFactory = new JacksonFactory();
8181
GoogleCredential credential = GoogleCredential.getApplicationDefault(transport, jsonFactory);
8282

83-
// Depending on the environment that provides the default credentials (eg Compute Engine, App
83+
// Depending on the environment that provides the default credentials (e.g. Compute Engine, App
8484
// Engine), the credentials may require us to specify the scopes we need explicitly.
8585
// Check for this case, and inject the Bigquery scope if required.
8686
if (credential.createScopedRequired()) {

storage/json-api/src/main/java/StorageSample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public static Bucket getBucket(String bucketName) throws IOException, GeneralSec
109109
Storage client = getService();
110110

111111
Storage.Buckets.Get bucketRequest = client.buckets().get(bucketName);
112-
// Fetch the full set of the bucket's properties (eg include the ACLs in the response)
112+
// Fetch the full set of the bucket's properties (e.g. include the ACLs in the response)
113113
bucketRequest.setProjection("full");
114114
return bucketRequest.execute();
115115
}

0 commit comments

Comments
 (0)