diff --git a/commands/drawTriangle.ts b/commands/drawTriangle.ts index 0dbf3f0..a7b10b2 100644 --- a/commands/drawTriangle.ts +++ b/commands/drawTriangle.ts @@ -99,7 +99,7 @@ function design3(input) { if (i == 0 || (j == 0 || j == (i - 1))) { // Check if we're at the beginning or end of the line outputString += "*"; } else { - outputString += " "; + outputString += " "; } } } @@ -114,7 +114,7 @@ function design3(input) { if ((i == 0 || (j == 0 || j == (i - 1)))) { // Check if we're at the beginning or end of the line outputString += "*"; } else { - outputString += " "; + outputString += " "; } } }