From 512f2a12b2f827dc2f5f8cdaaa3c8772740d1157 Mon Sep 17 00:00:00 2001 From: hexpresso <32096750+hexpreso@users.noreply.github.com> Date: Sun, 7 Sep 2025 18:14:17 +0200 Subject: [PATCH] docs: Fix typos and grammar in README - request is send -> request is sent - anohter-bucket -> another-bucket - The number of retries is adjustable (grammar) Docs-only changes; no code modifications. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b6854e0d2..bab6b91b0 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,7 @@ then filtering the results in-memory. For example, for the following command; s5cmd cp 's3://bucket/logs/2020/03/*' . -first a `ListObjects` request is send, then the copy operation will be executed +first a `ListObjects` request is sent, then the copy operation will be executed against each matching object, in parallel. @@ -499,7 +499,7 @@ will output cp s3://bucket/pre/file1.gz s3://another-bucket/file1.gz ... - cp s3://bucket/pre/last.txt s3://anohter-bucket/last.txt + cp s3://bucket/pre/last.txt s3://another-bucket/last.txt however, those copy operations will not be performed. It is displaying what `s5cmd` will do when ran without `--dry-run` @@ -571,7 +571,7 @@ path-style. `s5cmd` uses an exponential backoff retry mechanism for transient or potential server-side throttling errors. Non-retriable errors, such as `invalid credentials`, `authorization errors` etc, will not be retried. By default, -`s5cmd` will retry 10 times for up to a minute. Number of retries are adjustable +`s5cmd` will retry 10 times for up to a minute. The number of retries is adjustable via `--retry-count` flag. ℹ️ Enable debug level logging for displaying retryable errors.