From 53f26b0490ef65a6440aa746b0cd7ea554042ed4 Mon Sep 17 00:00:00 2001 From: Marc Emmanuel Date: Mon, 19 Jan 2026 15:18:04 +0100 Subject: [PATCH] Update src/modules/heightmap-generator.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/modules/heightmap-generator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/heightmap-generator.ts b/src/modules/heightmap-generator.ts index 2eed7f03..d2a8e182 100644 --- a/src/modules/heightmap-generator.ts +++ b/src/modules/heightmap-generator.ts @@ -544,7 +544,7 @@ class HeightmapGenerator { fromPrecreated(graph: any, id: string): Promise { return new Promise(resolve => { - // create canvas where 1px corresponts to a cell + // create canvas where 1px corresponds to a cell const canvas = document.createElement("canvas"); const ctx = canvas.getContext("2d") as CanvasRenderingContext2D; const {cellsX, cellsY} = graph;