From 5f5271e459db1d06291de05cc77cafe623b6ebee Mon Sep 17 00:00:00 2001 From: lilly Date: Mon, 10 Jun 2024 19:50:57 -0500 Subject: [PATCH] fix typos --- .vitepress/config.mts | 4 +--- exts/entrypoints.md | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.vitepress/config.mts b/.vitepress/config.mts index 2d16f23..87c72e9 100644 --- a/.vitepress/config.mts +++ b/.vitepress/config.mts @@ -49,9 +49,7 @@ export default defineConfig({ { text: 'Extensions', items: [ - { text: 'Main Entrypoint', link: '/exts/main' }, - { text: 'Client Entrypoint', link: '/exts/client' }, - { text: 'Server Entrypoint', link: '/exts/server' }, + { text: 'Entrypoints', link: '/exts/entrypoints' }, { text: 'Mixin', link: '/exts/mixin' }, { text: 'AccessWideners', link: '/exts/aw' }, { text: 'PreLaunch', link: '/exts/prelaunch' }, diff --git a/exts/entrypoints.md b/exts/entrypoints.md index cb5b7e8..88d1d2a 100644 --- a/exts/entrypoints.md +++ b/exts/entrypoints.md @@ -80,7 +80,7 @@ public class ExampleServerInit implements ServerExtension { } } ``` -Add this to the `[frog.extensions] table in your `frog.mod.toml` file, under the key `server`: +Add this to the `[frog.extensions]` table in your `frog.mod.toml` file, under the key `server`: ```toml [frog.extensions] ...