From: Ian Jackson Date: Mon, 18 Apr 2022 12:20:17 +0000 (+0100) Subject: script: Add a missing comma in a type definition X-Git-Tag: otter-1.1.0~482 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=f3de09eb60894e9b86c801df3b07b91f29e4b795;p=otter.git script: Add a missing comma in a type definition Signed-off-by: Ian Jackson --- diff --git a/templates/script.ts b/templates/script.ts index ab7b2ab6..7007b473 100644 --- a/templates/script.ts +++ b/templates/script.ts @@ -971,7 +971,7 @@ function some_mousedown(e : MouseEvent) { type MouseFindClicked = null | { clicked: PieceId[], held: PlayerId | null, - pinned: boolean + pinned: boolean, }; type PieceSet = { [piece: string]: true };