From f9dc3273161a764064e0df59f548e9e3a0f79eb4 Mon Sep 17 00:00:00 2001 From: Peter-MJ-Parker <34216187+Peter-MJ-Parker@users.noreply.github.com> Date: Fri, 20 Jun 2025 09:08:35 -0500 Subject: [PATCH] refactor: typo in spelling I have been informed of a typo in the word `successfully`. It wasn't a big deal to me nor did I ever notice it lol. I thought I'd help a guy out. --- packages/publisher/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/publisher/index.ts b/packages/publisher/index.ts index 0763083..6054889 100644 --- a/packages/publisher/index.ts +++ b/packages/publisher/index.ts @@ -147,7 +147,7 @@ export class Publisher implements Init { }); const result = await response.json(); if (response.ok) { - this.logger.info({ message: guildId + " published succesfully" }) + this.logger.info({ message: guildId + " published successfully" }) responsesMap.set(guildId, result); } else { switch(response.status) {