Skip to content

Commit

Permalink
fix a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
namusyaka committed Mar 20, 2019
1 parent 5e66ef1 commit 3784629
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/direct-upload-to-gcs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ In order to realize this system, you need to enable following APIs.
- Cloud Storage API
- Cloud Functions API
- Identity and Access Management (IAM) API
- If you are going to use original service account and its private key instead of the `signBlog` API, you don't need to enable this API.
- If you are going to use original service account and its private key instead of the `signBlob` API, you don't need to enable this API.
- Cloud Vision API

### Service Account
Expand Down
2 changes: 1 addition & 1 deletion examples/direct-upload-to-gcs/appengine/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
)

var (
// iamService is a client for calling the signBlog API.
// iamService is a client for calling the signBlob API.
iamService *iam.Service

// serviceAccountName represents Service Account Name.
Expand Down
2 changes: 1 addition & 1 deletion examples/direct-upload-to-gcs/function/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ func UploadImage(ctx context.Context, e GCSEvent) error {
log.Printf("upload: %s has already been copied to destination\n", e.Name)
return nil
}
// Return retryable error as there is a possibility thart object does not temporarily exist.
// Return retryable error as there is a possibility that object does not temporarily exist.
if err != storage.ErrObjectNotExist {
return err
}
Expand Down

0 comments on commit 3784629

Please sign in to comment.