Skip to content

Commit 2180d0f

Browse files
Fix line highlighting in C#, Swift, and PHP retry code snippets
- Changed C# client-level highlight from {3} to {4} - Changed Swift client-level highlight from {4} to {5} - Changed PHP client-level highlight from {3} to {4} - All highlights now correctly point to the maxRetries configuration line Co-Authored-By: Niels Swimberghe <[email protected]>
1 parent 0d82f8e commit 2180d0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fern/products/sdks/guides/retries-with-backoff.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ default retry limit when instantiating the client.
6969
```
7070
</CodeBlock>
7171
<CodeBlock title="C#">
72-
```csharp {3}
72+
```csharp {4}
7373
using Imdb;
7474

7575
var client = new ImdbClient(new ClientOptions {
@@ -78,7 +78,7 @@ default retry limit when instantiating the client.
7878
```
7979
</CodeBlock>
8080
<CodeBlock title="Swift">
81-
```swift {4}
81+
```swift {5}
8282
import Imdb
8383

8484
let client = ImdbClient(
@@ -88,7 +88,7 @@ default retry limit when instantiating the client.
8888
```
8989
</CodeBlock>
9090
<CodeBlock title="PHP">
91-
```php {3}
91+
```php {4}
9292
use Imdb\ImdbClient;
9393

9494
$client = new ImdbClient([

0 commit comments

Comments
 (0)