From c2782ab5897aa5c3b8f6aa16030393437298e167 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Sirois Date: Mon, 5 Oct 2020 09:36:09 -0400 Subject: [PATCH] fix(archives): fix token going out of screen --- src/content/archives/what-is-discordjs.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/archives/what-is-discordjs.md b/src/content/archives/what-is-discordjs.md index c9323d1..3330bc6 100644 --- a/src/content/archives/what-is-discordjs.md +++ b/src/content/archives/what-is-discordjs.md @@ -58,14 +58,14 @@ Now let's create a few files that we'll need. The `.env` file here will be used to store our token. **If using git make sure you gitignore this file** Open up the `.env` file and fill it out using the information -``` +```env DISCORD_TOKEN=your_token ``` -// Example +For example: -``` -DISCORD_TOKEN=NzEyNTgwNDYyMzAzOTAzODA2.XsToSQ.ef6y_53oQbNCpNsDgWoWu7QSPU4 (not a real token) +```env +DISCORD_TOKEN=NzEyNTgwNDYyMzAzOTAzODA2.XsToSQ.ef6y_53oQbNCpNsDgWoWu7QSPU4 ``` The `index.js` file is where all our code goes.