Skip to content

Commit

Permalink
fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
WickyNilliams committed Apr 4, 2024
1 parent c0016cd commit 84cdced
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
5 changes: 3 additions & 2 deletions docs/src/pages/components/calendar-date.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ import Link from "../../components/Link.astro";
>
<p>
This component, combined with
<Link href="/api/calendar-month/"><code>{`<calendar-month>`}</code></Link>,
is used to select a single date. It can display one or more months at a
<Link href="/components/calendar-month/"
><code>{`<calendar-month>`}</code></Link
>, is used to select a single date. It can display one or more months at a
time.
</p>

Expand Down
8 changes: 6 additions & 2 deletions docs/src/pages/components/calendar-month.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ import Link from "../../components/Link.astro";
<p>
This is the lowest level component that displays a grid of clickable days.
It should not be used alone, but as a descendant of one of
<Link href="/api/calendar-date/"><code>{`<calendar-date>`}</code></Link> or
<Link href="/api/calendar-range/"><code>{`<calendar-range>`}</code></Link>.
<Link href="/components/calendar-date/"
><code>{`<calendar-date>`}</code></Link
> or
<Link href="/components/calendar-range/"
><code>{`<calendar-range>`}</code></Link
>.
</p>

<Heading level={2}>Properties and attributes</Heading>
Expand Down
5 changes: 3 additions & 2 deletions docs/src/pages/components/calendar-range.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ import Link from "../../components/Link.astro";
>
<p>
This component, combined with
<Link href="/api/calendar-month/"><code>{`<calendar-month>`}</code></Link>,
is used to select a date range. It shows one or more months at a time.
<Link href="/components/calendar-month/"
><code>{`<calendar-month>`}</code></Link
>, is used to select a date range. It shows one or more months at a time.
</p>

<Example>
Expand Down

0 comments on commit 84cdced

Please sign in to comment.