From ba6ece8b8ad343a7c5f937bf5894d638f08b1691 Mon Sep 17 00:00:00 2001 From: Skillz Date: Tue, 28 Feb 2023 13:43:06 -0600 Subject: [PATCH] fix: trigger docs deploy --- website/docs/migrating/eris.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/migrating/eris.md b/website/docs/migrating/eris.md index 5f5afdbb1..7f28ab444 100644 --- a/website/docs/migrating/eris.md +++ b/website/docs/migrating/eris.md @@ -36,5 +36,5 @@ We are going to use [NayuBot](https://github.com/AwesomeStickz/Nayu-Bot) which i At this moment in time, the tsc terminal(from now one we are going to refer to this as TypeScript), is telling us we have 13 errors. This is because although we removed eris, we need to fix any imports it may have. So let's run a search in VSC to find any `from 'eris';` and `from "eris"`. We need to replace these with `from '@discordeno/client'` and `from "@discordeno/client"`. -We now have 20 errors in TypeScript. Some of these errors are not Discordeno/Eris related. However, some of them are. Let's discuss them below. +Tada! Time to run!