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 = []