Skip to content

Commit 2261029

Browse files
authored
Fix a bunch of typos (#3604)
1 parent 9f9912c commit 2261029

File tree

30 files changed

+33
-33
lines changed

30 files changed

+33
-33
lines changed

packages/skeleton-react/src/components/Navigation/Navigation.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ describe('Navigation', () => {
210210
expect(getByTestId(testId)).toHaveClass(expandedClasses);
211211
});
212212

213-
it('Correctly applies the `active` prop based on wether the tile is active', async () => {
213+
it('Correctly applies the `active` prop based on whether the tile is active', async () => {
214214
const active = 'active';
215215
const { getByTestId, rerender } = render(
216216
<Navigation.Rail>

playgrounds/skeleton-react/src/app/components/file-upload/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default function Page() {
4141
</section>
4242
<section className="space-y-4">
4343
<h2 className="h2">Disabled</h2>
44-
{/* Deafult */}
44+
{/* Default */}
4545
<FileUpload name="example" disabled />
4646
<FileUpload name="example" disabled>
4747
<button className="btn preset-filled">Disabled</button>

playgrounds/skeleton-react/src/app/components/progress/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export default function Page() {
5757
<section className="space-y-4">
5858
<h2 className="h2">Indeterminate</h2>
5959
<Progress value={null}>
60-
<span>Deafult Animation</span>
60+
<span>Default Animation</span>
6161
</Progress>
6262
{/* NOTE: `custom-indeterminate` defined in app.pcss */}
6363
<Progress value={null} meterAnimate="custom-indeterminate">

playgrounds/skeleton-svelte/src/routes/components/progress/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<section class="space-y-4">
5353
<h2 class="h2">Indeterminate</h2>
5454
<Progress value={null} {max}>
55-
<span>Deafult Animation</span>
55+
<span>Default Animation</span>
5656
</Progress>
5757
<!-- NOTE: `custom-indeterminate` defined in app.css -->
5858
<Progress value={null} {max} meterAnimate="custom-indeterminate">

playgrounds/skeleton-svelte/src/routes/components/ratings/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</Rating>
2323
</section>
2424
<section class="space-y-4">
25-
<h2 class="h2">With Halfs</h2>
25+
<h2 class="h2">With Halves</h2>
2626
<Rating {value} onValueChange={(e) => (value = e.value)} allowHalf></Rating>
2727
</section>
2828
<section class="space-y-4">

sites/skeleton.dev/src/components/docs/Anatomy.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ interface Props {
88
99
const { isComponent, label, descriptor, tag } = Astro.props;
1010
11-
const labelFallback = '(unlabled)';
11+
const labelFallback = '(unlabeled)';
1212
const tagFallback = 'div';
1313
---
1414

sites/skeleton.dev/src/content/docs/components/avatar/react.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import ExampleStyleRaw from '@examples/components/avatars/ExampleStyle.tsx?raw';
2424

2525
## Fallback
2626

27-
When `src` or `srcSet` are missing or fail to load, a fallback will be displayed. By default this will show the user initials, based on the `name`. Optionally you can suppy your own content using the default `children`. This can be used to display icons or even pass a [Next.js image component](https://nextjs.org/docs/pages/api-reference/components/image).
27+
When `src` or `srcSet` are missing or fail to load, a fallback will be displayed. By default this will show the user initials, based on the `name`. Optionally you can supply your own content using the default `children`. This can be used to display icons or even pass a [Next.js image component](https://nextjs.org/docs/pages/api-reference/components/image).
2828

2929
<Preview client:load>
3030
<Fragment slot="preview">

sites/skeleton.dev/src/content/docs/components/toast/react.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ toaster.create({
4848
});
4949
```
5050

51-
Additonally, four shorthand methods are available for specific toast types.
51+
Additionally, four shorthand methods are available for specific toast types.
5252

5353
- `info()`
5454
- `success()`

sites/skeleton.dev/src/content/docs/components/toast/svelte.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ toaster.create({
4848
});
4949
```
5050

51-
Additonally, four shorthand methods are available for specific toast types.
51+
Additionally, four shorthand methods are available for specific toast types.
5252

5353
- `info()`
5454
- `success()`

sites/skeleton.dev/src/content/docs/design/colors.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ For example:
7676

7777
### How Pairings Work
7878

79-
Color Pairing are enabled through the use of the CSS [light-dark](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/light-dark) function. For example, the `text-primary-300-700` pairing will be implemnted in your CSS bundle as follows:
79+
Color Pairing are enabled through the use of the CSS [light-dark](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/light-dark) function. For example, the `text-primary-300-700` pairing will be implemented in your CSS bundle as follows:
8080

8181
```css
8282
.text-primary-300-700 {

0 commit comments

Comments
 (0)