Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

example/service/s3: Fix typo in example documentation #2896

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/service/s3/concatObjects/README.md
Expand Up @@ -10,5 +10,5 @@ two objects that we want to concatenate together.
The example uses the bucket name provided, two keys for each object, and lastly the output key.

```sh
AWS_REGION=<region> go run -tags example concatenateObjects.go <bucket> <key for object 1> <key for object 2> <key for output>
AWS_REGION=<region> go run -tags example concatObjects.go <bucket> <key for object 1> <key for object 2> <key for output>
```
2 changes: 1 addition & 1 deletion example/service/s3/listObjectsConcurrently/README.md
Expand Up @@ -7,7 +7,7 @@ This is an example using the AWS SDK for Go concurrently to list the encrypted o
The example's `accounts` string slice contains a list of the SharedCredentials profiles which will be used to look up the buckets owned by each profile. Each bucket's objects will be queried.

```
AWS_REGION=us-east-1 go run -tags example listObjectsConcurrentlv.go
AWS_REGION=us-east-1 go run -tags example listObjectsConcurrently.go
```