fix in TextOutput

This commit is contained in:
Leonardo Brandenberger 2021-11-11 20:20:35 +01:00
parent 6a60150a19
commit 94fa99d5b2
1 changed files with 3 additions and 1 deletions

View File

@ -64,9 +64,11 @@ public class TextOutput {
System.out.print(" "); System.out.print(" ");
currentLength = word.length() + 1; currentLength = word.length() + 1;
} }
else {
System.out.println();
}
} }
} }
System.out.println();
} }
} }