Skip to content

Commit 365aab0

Browse files
authored
refactor: use lowercase discord.js where capitalization is not gramatically necessary (#1015)
1 parent c6690c1 commit 365aab0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div align="center">
2-
<img src="guide/images/branding/banner-blurple-small.png" title="Discord.js Guide" alt="Discord.js Guide" />
2+
<img src="guide/images/branding/banner-blurple-small.png" title="discord.js Guide" alt="discord.js Guide" />
33
</div>
44

55
# Discord.js Guide

guide/.vuepress/config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ const config = defineUserConfig<DefaultThemeOptions, ViteBundlerOptions>({
88
templateDev: path.join(__dirname, 'templates', 'index.dev.html'),
99
templateSSR: path.join(__dirname, 'templates', 'index.ssr.html'),
1010
lang: 'en-US',
11-
title: 'Discord.js Guide',
11+
title: 'discord.js Guide',
1212
description: 'Imagine a guide... that explores the many possibilities for your discord.js bot.',
1313
head: [
1414
['meta', { charset: 'utf-8' }],
1515
['meta', { name: 'viewport', content: 'width=device-width, initial-scale=1.0' }],
1616
['link', { rel: 'icon', href: '/favicon.png' }],
1717
['meta', { name: 'theme-color', content: '#3eaf7c' }],
1818
['meta', { name: 'twitter:card', content: 'summary' }],
19-
['meta', { property: 'og:title', content: 'Discord.js Guide' }],
19+
['meta', { property: 'og:title', content: 'discord.js Guide' }],
2020
['meta', { property: 'og:description', content: 'Imagine a guide... that explores the many possibilities for your discord.js bot.' }],
2121
['meta', { property: 'og:type', content: 'website' }],
2222
['meta', { property: 'og:url', content: 'https://discordjs.guide/' }],

guide/creating-your-bot/creating-commands.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ client.on('interactionCreate', async interaction => {
145145
<template #interactions>
146146
<DiscordInteraction profile="user" :command="true">server</DiscordInteraction>
147147
</template>
148-
Server name: Discord.js Guide
148+
Server name: discord.js Guide
149149
<br />
150150
Total members: 2
151151
</DiscordMessage>

0 commit comments

Comments
 (0)