Skip to content

Commit

Permalink
example/service/s3: Fix typo in example documentation (#2896)
Browse files Browse the repository at this point in the history
Fixes typo in example documentation
  • Loading branch information
camstuart authored and jasdel committed Oct 21, 2019
1 parent 1d5d147 commit e52423b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
```


0 comments on commit e52423b

Please sign in to comment.