From e52423b01f23d76a3736ef443e96167e4bde2e19 Mon Sep 17 00:00:00 2001 From: Cam Stuart Date: Tue, 22 Oct 2019 10:55:00 +1100 Subject: [PATCH] example/service/s3: Fix typo in example documentation (#2896) Fixes typo in example documentation --- example/service/s3/concatObjects/README.md | 2 +- example/service/s3/listObjectsConcurrently/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example/service/s3/concatObjects/README.md b/example/service/s3/concatObjects/README.md index 6db01eb91f..8af8042b01 100644 --- a/example/service/s3/concatObjects/README.md +++ b/example/service/s3/concatObjects/README.md @@ -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= go run -tags example concatenateObjects.go +AWS_REGION= go run -tags example concatObjects.go ``` diff --git a/example/service/s3/listObjectsConcurrently/README.md b/example/service/s3/listObjectsConcurrently/README.md index fad5b94dfc..dbdb5cb661 100644 --- a/example/service/s3/listObjectsConcurrently/README.md +++ b/example/service/s3/listObjectsConcurrently/README.md @@ -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 ```