From 47f46572bddac540934a06f6090adf8548d9d14b Mon Sep 17 00:00:00 2001 From: rooklift <16438795+rooklift@users.noreply.github.com> Date: Mon, 31 Oct 2022 19:24:01 +0000 Subject: [PATCH] Comment --- src/61_pgn_parse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/61_pgn_parse.js b/src/61_pgn_parse.js index 7e6b0a80..caa7ac4e 100644 --- a/src/61_pgn_parse.js +++ b/src/61_pgn_parse.js @@ -182,7 +182,7 @@ function LoadPGNRecord(o) { // This can throw! let [move, error] = node.board.parse_pgn(s); if (error) { - DestroyTree(root); + DestroyTree(root); // Alternatively, we could just end the parse here and return what we've got so far? throw `"${s}" -- ${error}`; }