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; }