From 8daa0d6c349aeba80f06a221aa65189dbc2cc878 Mon Sep 17 00:00:00 2001 From: Alex Chan Date: Tue, 10 Aug 2021 23:27:00 +0100 Subject: [PATCH] Fix a typo in the new S3TransferManager README --- services-custom/s3-transfer-manager/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services-custom/s3-transfer-manager/README.md b/services-custom/s3-transfer-manager/README.md index 54f78e8d3925..6ac745a47481 100644 --- a/services-custom/s3-transfer-manager/README.md +++ b/services-custom/s3-transfer-manager/README.md @@ -42,7 +42,7 @@ S3TransferManager transferManager = ``` ### Download an S3 object to a file -To download an object, you just need to provide the destion file path and the `GetObjectRequest` that should be used for the download. +To download an object, you just need to provide the destination file path and the `GetObjectRequest` that should be used for the download. ```java Download download = @@ -62,4 +62,4 @@ Upload upload = transferManager.upload(b -> b.source(path) upload.completionFuture().join(); -``` \ No newline at end of file +```