Skip to content

Commit 02f5e46

Browse files
committed
chore: address ollie's comments
1 parent 7f463ad commit 02f5e46

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/components/changelog/Releases.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ const headings = entries.map((entry) => {
2323
---
2424

2525
<StarlightPage frontmatter={{ title }} {headings}>
26-
{entries.map((entry) => <Release id={entry.id.substring(entry.id.lastIndexOf("/") + 1)} {entry} />)}
26+
{entries.map((entry) => <Release id={entry.id.substring(entry.id.lastIndexOf("/") + 1)} {entry} /><hr/>)}
2727
</StarlightPage>

src/content/docs/adventure/migration/bungeecord-chat-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Move from the BungeeCord Chat API to the Adventure API.
55
---
66

77
Adventure's text API and the BungeeCord Chat API are designed along very different
8-
lines. This page goes over some notable differences.
8+
methodologies. This page goes over some notable differences.
99

1010
## Audiences
1111

src/content/docs/adventure/minimessage/api.mdx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: API
2+
title: MiniMessage API
33
slug: adventure/minimessage/api
44
description: A guide on using MiniMessage in your code.
55
---
@@ -182,8 +182,9 @@ Parser directives are a special kind of tag, as they are instructions for the pa
182182

183183
There is currently only one, but more may be added at any time.
184184

185-
| RESET | This indicates to the parser that this tag should close all currently open tags. |
186-
185+
| Directive | Description |
186+
|-----------|----------------------------------------------------------------------------------|
187+
| RESET | This indicates to the parser that this tag should close all currently open tags. |
187188

188189
This can be used to provide the functionality of a `<reset>` tag under a different name. For example:
189190

0 commit comments

Comments
 (0)