fix(docs): mintlify-produced syntax error & self-produced typos

This commit is contained in:
Hampus Kraft 2026-02-21 16:31:51 +00:00
parent 2db53689a1
commit f54f62ae3c
No known key found for this signature in database
GPG Key ID: 6090864C465A454D

View File

@ -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".'
---
<Warning>
@ -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=<your token goes here>
```
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';