We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22fd4f9 commit 3df2322Copy full SHA for 3df2322
docs/index.md
@@ -186,10 +186,10 @@ $exceptionClassifier = new ExceptionClassifier([
186
$retry = new Retry($backOff, $exceptionClassifier);
187
```
188
189
-If you don't need any back-off at all use NullBackOff which just count attempts:
+If you don't need any back-off at all use [NullBackOff](../src/NullBackOff.php) which just count attempts:
190
191
```php
192
-$backOff = new NullBackOff(maxAttempts: 3);
+$backOff = new NullBackOff(maxAttempts: INF);
193
194
$exceptionClassifier = new ExceptionClassifier([
195
\RuntimeException::class,
0 commit comments