From ccd29be4c46309c2ac2b9b5a63e19aded445efaf Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Wed, 6 Mar 2024 11:37:38 -0800 Subject: [PATCH] chore: fix spelling in common.ts definiton -> definition --- core/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/common.ts b/core/common.ts index 29fb7777b..44becc809 100644 --- a/core/common.ts +++ b/core/common.ts @@ -282,7 +282,7 @@ export function defineBlocks(blocks: {[key: string]: BlockDefinition}) { for (const type of Object.keys(blocks)) { const definition = blocks[type]; if (type in Blocks) { - console.warn(`Block definiton "${type}" overwrites previous definition.`); + console.warn(`Block definition "${type}" overwrites previous definition.`); } Blocks[type] = definition; }