From 3bef72ad7a1a948d608db67c12e286224e7d5b76 Mon Sep 17 00:00:00 2001 From: Nikita Vasilev Date: Sun, 21 Dec 2025 20:19:21 +0400 Subject: [PATCH] docs: fix typos in the documentation --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 28f740a..a841928 100644 --- a/README.md +++ b/README.md @@ -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 { @@ -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) ) @@ -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