Skip to content

Commit

Permalink
Merge pull request #32 from GoogleCloudPlatform/eg
Browse files Browse the repository at this point in the history
"eg" -> "e.g."
  • Loading branch information
jerjou committed Sep 3, 2015
2 parents b60233e + b3a4d2a commit b717cd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private static Bigquery createAuthorizedClient() throws IOException {
JsonFactory jsonFactory = new JacksonFactory();
GoogleCredential credential = GoogleCredential.getApplicationDefault(transport, jsonFactory);

// Depending on the environment that provides the default credentials (eg Compute Engine, App
// Depending on the environment that provides the default credentials (e.g. Compute Engine, App
// Engine), the credentials may require us to specify the scopes we need explicitly.
// Check for this case, and inject the Bigquery scope if required.
if (credential.createScopedRequired()) {
Expand Down
2 changes: 1 addition & 1 deletion storage/json-api/src/main/java/StorageSample.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public static Bucket getBucket(String bucketName) throws IOException, GeneralSec
Storage client = getService();

Storage.Buckets.Get bucketRequest = client.buckets().get(bucketName);
// Fetch the full set of the bucket's properties (eg include the ACLs in the response)
// Fetch the full set of the bucket's properties (e.g. include the ACLs in the response)
bucketRequest.setProjection("full");
return bucketRequest.execute();
}
Expand Down

0 comments on commit b717cd3

Please sign in to comment.