Skip to content

Commit a23b55a

Browse files
committed
Update README.md
1 parent 880c7d6 commit a23b55a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ There are two strategies
55
- exponential - Exponential backoff is a strategy in which you increase the delays between retries
66

77
```swift
8-
/// constant delay between retries
8+
/// Constant delay between retries
99
case constant(
1010
retry : UInt = 5,
1111
duration: DispatchTimeInterval = .seconds(2),
1212
timeout: DispatchTimeInterval = .seconds(Int.max)
1313
)
1414

15-
/// Exponential backoff is a strategy in which you increase the delays between retries.
15+
/// Exponential backoff is a strategy in which you increase the delays between retries
1616
case exponential(
1717
retry : UInt = 3,
1818
multiplier: Double = 2.0, // The power exponent

0 commit comments

Comments
 (0)