From 9d961b36729a43b16d75a0b6fb0065d59ac6ce06 Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Wed, 6 Apr 2022 03:11:26 +0200 Subject: [PATCH] Fix tests --- Utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils.ts b/Utils.ts index 21668a1bc6..a6e841cfac 100644 --- a/Utils.ts +++ b/Utils.ts @@ -223,7 +223,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be /** * In the given list, all values which are lists will be merged with the values, e.g. * - * Utils.Flatten([ [1,2], 2, [4, [5 ,6]] ]) // => [1, 2, 3, 4, [5, 6]] + * Utils.Flatten([ [1,2], 3, [4, [5 ,6]] ]) // => [1, 2, 3, 4, [5, 6]] */ public static Flatten(list: (T | T[])[]): T[] { const result = []