Skip to content

Commit a1f5220

Browse files
Fix Vale style issues
- Remove 'properly' adverb from card-groups.mdx - Change 'Font Awesome styles' to 'Font Awesome icon styles' for sentence case - Add trailing commas to fix punctuation in code-blocks.mdx - Change 'in pixels' to '(in pixels)' in tooltips.mdx Co-Authored-By: Kapil Gowru <[email protected]>
1 parent 74b4f33 commit a1f5220

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

fern/products/docs/pages/component-library/default-components/card-groups.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The `CardGroup` component lets you organize multiple [`Card` components](/docs/w
1111
icon="regular droplet"
1212
href="/learn/docs/writing-content/components/cards"
1313
>
14-
Learn how to properly water your plants
14+
Learn how to water your plants
1515
</Card>
1616
<Card
1717
title="Sunlight"
@@ -45,7 +45,7 @@ The `CardGroup` component lets you organize multiple [`Card` components](/docs/w
4545
icon="regular droplet"
4646
href="/learn/docs/writing-content/components/cards"
4747
>
48-
Learn how to properly water your plants
48+
Learn how to water your plants
4949
</Card>
5050
<Card
5151
title="Sunlight"

fern/products/docs/pages/component-library/default-components/code-blocks.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ The `links` property accepts a map where keys are matching patterns (exact strin
274274
### Exact string matching
275275

276276
<CodeBlock
277-
links={{"PlantClient": "/learn/docs/writing-content/demo#plantclient", "createPlant": "/learn/docs/writing-content/demo#createplant"}}
277+
links={{"PlantClient": "/learn/docs/writing-content/demo#plantclient", "createPlant": "/learn/docs/writing-content/demo#createplant",}}
278278
>
279279
```typescript
280280
import { PlantClient } from "@plantstore/sdk";
@@ -314,7 +314,7 @@ You can use regex patterns for more flexible matching. This is useful when you w
314314
In the example below, the pattern `/get\\w+/` matches both `getPlant` and `getGarden`, while `/Plant(Store|Client)/` matches both `PlantStore` and `PlantClient`.
315315

316316
<CodeBlock
317-
links={{"/get\\w+/": "/learn/docs/writing-content/demo#get-methods", "/Plant(Store|Client)/": "/learn/docs/writing-content/demo#type-definitions"}}
317+
links={{"/get\\w+/": "/learn/docs/writing-content/demo#get-methods", "/Plant(Store|Client)/": "/learn/docs/writing-content/demo#type-definitions",}}
318318
>
319319
```python
320320
from plantstore import PlantStore, PlantClient
@@ -329,7 +329,7 @@ garden = store.getGarden(garden_id="456")
329329

330330
````markdown
331331
<CodeBlock
332-
links={{"/get\\w+/": "/learn/docs/writing-content/demo#get-methods", "/Plant(Store|Client)/": "/learn/docs/writing-content/demo#type-definitions"}}
332+
links={{"/get\\w+/": "/learn/docs/writing-content/demo#get-methods", "/Plant(Store|Client)/": "/learn/docs/writing-content/demo#type-definitions",}}
333333
>
334334
```python
335335
from plantstore import PlantStore, PlantClient

fern/products/docs/pages/component-library/default-components/icons.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Add Font Awesome icons to your docs with customizable styles, colors and sizes u
3535

3636
## Variants
3737

38-
### Font Awesome styles
38+
### Font Awesome icon styles
3939

4040
You can use any Font Awesome style by using either:
4141
- Short syntax: `icon="heart"` (defaults to solid)

fern/products/docs/pages/component-library/default-components/tooltips.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ const api = axios.create({
149149
</ParamField>
150150

151151
<ParamField path="sideOffset" type="number" required={false} default={4}>
152-
The distance in pixels between the tooltip and the trigger element.
152+
The distance (in pixels) between the tooltip and the trigger element.
153153
</ParamField>
154154

155155
## Styling

0 commit comments

Comments
 (0)