From f54f62ae3c0dd8e85120f1407f034325916a61ea Mon Sep 17 00:00:00 2001 From: Hampus Kraft Date: Sat, 21 Feb 2026 16:31:51 +0000 Subject: [PATCH] fix(docs): mintlify-produced syntax error & self-produced typos --- fluxer_docs/quickstart.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fluxer_docs/quickstart.mdx b/fluxer_docs/quickstart.mdx index b7e21b85..e9386776 100644 --- a/fluxer_docs/quickstart.mdx +++ b/fluxer_docs/quickstart.mdx @@ -1,6 +1,6 @@ --- title: "Quickstart: ping-pong bot" -description: "Create a bot application, invite it to a guild, and reply "pong" to "ping"." +description: 'Create a bot application, invite it to a guild, and reply "pong" to "ping".' --- @@ -97,13 +97,13 @@ Second, install the required dependencies: npm i -E @discordjs/core@2.4.0 @discordjs/rest@2.6.0 @discordjs/ws@2.0.4 ``` -Second, store your token from Step 4 in a `.env` file in this folder: +Third, store your token from Step 4 in a `.env` file in this folder: ``` FLUXER_BOT_TOKEN= ``` -Third, create a new `bot.mjs` file, looking like so: +Fourth, create a new `bot.mjs` file, looking like so: ```javascript import {Client, GatewayDispatchEvents} from '@discordjs/core';