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

Fix minor typos #193

Merged
merged 1 commit into from
May 23, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ $ mix test

## Release

* Make sure the `CHANGELOG.md` is up-to-date and and reflects the changes for
* Make sure the `CHANGELOG.md` is up-to-date and reflects the changes for
the new version.
* Bump the version here in the `README.md` and in `mix.exs`.
* Run `git tag v$VERSION` to tag the version that was just published.
Expand Down
2 changes: 1 addition & 1 deletion lib/aws/client.ex
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ defmodule AWS.Client do
* `retry_opts` - the options to configure retries in case of errors. This uses exponential backoff with jitter.
* `:max_retries` - the maximum number of retries (plus the initial request). Defaults to `10`.
* `:base_sleep_time` - the base sleep time in milliseconds. Defaults to `5`.
* `:cap_sleep_time` - the maximum sleep time between atttempts. Defaults to `5_000`.
* `:cap_sleep_time` - the maximum sleep time between attempts. Defaults to `5_000`.

See "FullJitter" at: https://aws.amazon.com/blogs/architecture/exponential-backoff-and-jitter/

Expand Down
Loading