Skip to content

Commit 99990f2

Browse files
committed
upd GCD.java
1 parent 2233bb7 commit 99990f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/hexlet/code/Progression.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static void gameLogic() {
2323
String[] progressionWithDots = new String[progression.length];
2424
for (int i = 0; i < progression.length; i++) {
2525
if (i == randHideElement) {
26-
progressionWithDots[i] = "...";
26+
progressionWithDots[i] = "..";
2727
} else {
2828
progressionWithDots[i] = String.valueOf(progression[i]);
2929
}

0 commit comments

Comments
 (0)