Skip to content

Commit 70b37d1

Browse files
committed
fix: typo
1 parent f382c26 commit 70b37d1

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

content/styling.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ For each component that renders an HTML element, we provide a `class` prop that
99

1010
## CSS frameworks
1111

12-
If you're using a CSS framework like Tailwind or UnoCSS, you can simply pass the classes you need to the component, and they will be applies to the underlying HTML element it renders.
12+
If you're using a CSS framework like Tailwind or UnoCSS, you can simply pass the classes you need to the component, and they will be applied to the underlying HTML element it renders.
1313

1414
```svelte
1515
<script lang="ts">

src/content/api-reference/calendar.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ const root: APISchema<Calendar.Props> = {
5959
definition: enums("narrow", "short", "long")
6060
},
6161
description:
62-
"The format to use for the weekday strings provided via the `weekdays` slot prop."
62+
"The format to use for the weekday strings provided via the `weekdays` slot prop.",
63+
default: "'narrow'"
6364
},
6465
calendarLabel: {
6566
type: C.STRING,

src/content/api-reference/range-calendar.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ const root: APISchema<RangeCalendar.Props> = {
5858
definition: enums("narrow", "short", "long")
5959
},
6060
description:
61-
"The format to use for the weekday strings provided via the `weekdays` slot prop."
61+
"The format to use for the weekday strings provided via the `weekdays` slot prop.",
62+
default: "'narrow'"
6263
},
6364
weekStartsOn: {
6465
type: C.NUMBER,

0 commit comments

Comments
 (0)