From 75b0ec2177a67efb463ef9dc0c570303adadf7d3 Mon Sep 17 00:00:00 2001 From: guillaume Date: Mon, 20 Nov 2023 15:27:08 +0100 Subject: [PATCH] Revert "enlever le commentaire" This reverts commit 6d0a7c49f41be3b170fc9f04de3e238222b6a336. --- src/12_RefactoringGolf/hole1/kata.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/12_RefactoringGolf/hole1/kata.ts b/src/12_RefactoringGolf/hole1/kata.ts index 029c5b6..c750e5e 100644 --- a/src/12_RefactoringGolf/hole1/kata.ts +++ b/src/12_RefactoringGolf/hole1/kata.ts @@ -99,7 +99,7 @@ class Board { } public AddTileAt(symbol: string, x: number, y: number): void { - + //@ts-ignore const tile: Tile = { X: x, Y: y, Symbol: symbol }; this._plays.find((t: Tile) => t.X == x && t.Y == y)!.Symbol = symbol;