From 20c8995ec1b16f1e5dc4ea526a56d03d015b02b5 Mon Sep 17 00:00:00 2001 From: Joshua Kuan Date: Sun, 13 Mar 2022 14:17:49 -0700 Subject: [PATCH] docs: fix typo in create-structure urls (#2099) --- site/docs/nodejs/Structures/create-structure.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/site/docs/nodejs/Structures/create-structure.md b/site/docs/nodejs/Structures/create-structure.md index d7b7808c2..473e666d4 100644 --- a/site/docs/nodejs/Structures/create-structure.md +++ b/site/docs/nodejs/Structures/create-structure.md @@ -55,13 +55,13 @@ the data, how the methods are named and how you want to process the request. When you are migrating from another library, you'll likely choose to continue using special structures. Therefore why we have ready-made structures in our template repo: -- [Guild](https://github.com/discordeno/discordeno/tree/main/template/nodejs/structures/Guild.js) -- [Channel](https://github.com/discordeno/discordeno/tree/main/template/nodejs/structures/Channel.js) -- [Role](https://github.com/discordeno/discordeno/tree/main/template/nodejs/structures/Role.js) -- [Member](https://github.com/discordeno/discordeno/tree/main/template/nodejs/structures/Member.js) -- [User](https://github.com/discordeno/discordeno/tree/main/template/nodejs/structures/User.js) -- [Message](https://github.com/discordeno/discordeno/tree/main/template/nodejs/structures/Message.js) -- [Interaction](https://github.com/discordeno/discordeno/tree/main/template/nodejs/structures/Interaction.js) +- [Guild](https://github.com/discordeno/discordeno/tree/main/template/nodejs/Structures/Guild.js) +- [Channel](https://github.com/discordeno/discordeno/tree/main/template/nodejs/Structures/Channel.js) +- [Role](https://github.com/discordeno/discordeno/tree/main/template/nodejs/Structures/Role.js) +- [Member](https://github.com/discordeno/discordeno/tree/main/template/nodejs/Structures/Member.js) +- [User](https://github.com/discordeno/discordeno/tree/main/template/nodejs/Structures/User.js) +- [Message](https://github.com/discordeno/discordeno/tree/main/template/nodejs/Structures/Message.js) +- [Interaction](https://github.com/discordeno/discordeno/tree/main/template/nodejs/Structures/Interaction.js) We recommend that you clone the whole template repo, since some structures are based on other files.