Skip to content
Merged
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ import Typhoon

// Retry up to 5 times with 2 seconds between each attempt
let service = RetryPolicyService(
strategy: .constant(retry: 5, duration: .seconds(2))
strategy: .constant(retry: 4, duration: .seconds(2))
)

do {
Expand Down Expand Up @@ -152,7 +152,7 @@ import Typhoon
// Retry up to 4 times with exponentially increasing delays
let service = RetryPolicyService(
strategy: .exponential(
retry: 4,
retry: 3,
multiplier: 2.0,
duration: .seconds(1)
)
Expand Down Expand Up @@ -300,7 +300,7 @@ class PaymentService {

## Documentation

Comprehensive documentation is available: [Typhoon Documentation](https://space-code.github.io/typhoon/typhoon/documentation/typhoon/)
Comprehensive documentation is available: [Typhoon Documentation](https://space-code.github.io/typhoon/)

## Contributing

Expand Down