Skip to content

Commit 9c42d28

Browse files
fix: Address Vale linting suggestions
- Remove 'currently' (time-relative term) - Use 'won't' instead of 'will not' (contractions) - Remove 'we' (first-person plural) Co-Authored-By: [email protected] <[email protected]>
1 parent 927994e commit 9c42d28

File tree

1 file changed

+3
-3
lines changed
  • fern/products/api-def/openapi-pages/extensions

1 file changed

+3
-3
lines changed

fern/products/api-def/openapi-pages/extensions/retries.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ subtitle: Configure retry behavior for endpoints using `x-fern-retries` extensio
44
---
55

66
<Callout intent="info">
7-
The `x-fern-retries` extension is currently supported in Python SDKs only.
7+
The `x-fern-retries` extension is supported in Python SDKs only.
88
</Callout>
99

1010
The `x-fern-retries` extension allows you to configure retry behavior at the endpoint level in your OpenAPI specification. This gives you fine-grained control over how the generated SDK handles retries for specific endpoints, overriding any default retry configuration that end users may have set.
@@ -28,7 +28,7 @@ paths:
2828
type: string
2929
```
3030
31-
When retries are disabled at the endpoint level, the generated SDK will not retry failed requests to that endpoint, regardless of the end user's SDK configuration.
31+
When retries are disabled at the endpoint level, the generated SDK won't retry failed requests to that endpoint, regardless of the end user's SDK configuration.
3232
3333
## Use cases
3434
@@ -40,7 +40,7 @@ The `x-fern-retries` extension is useful when you want to:
4040

4141
## Example: Disable retries for a POST endpoint
4242

43-
In this example, we disable retries for a plant creation endpoint to prevent duplicate entries:
43+
This example disables retries for a plant creation endpoint to prevent duplicate entries:
4444

4545
```yaml title="openapi.yml" {4-5}
4646
paths:

0 commit comments

Comments
 (0)