Skip to content

Commit 13cfb99

Browse files
committed
Just a typo in info output; doesn't change anything
1 parent 5617225 commit 13cfb99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/robabrazado/aoc2024/day21/Starship.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public Starship(Stream<String> puzzleInput, boolean partOne) {
2626
// My keypad -> 25 intervening keypads -> door keypad
2727
Keypad keypad = new Keypad("Player Keypad", KeypadType.DIRECTIONAL);
2828
for (int i = 1; i <= 25; i++) {
29-
Keypad newKeypad = new Keypad(String.format("Interstitial Keypad $02d", i), KeypadType.DIRECTIONAL, keypad);
29+
Keypad newKeypad = new Keypad(String.format("Interstitial Keypad %02d", i), KeypadType.DIRECTIONAL, keypad);
3030
keypad = newKeypad;
3131
}
3232
this.doorKeypad = new Keypad("Door Keypad", KeypadType.NUMERIC, keypad);

0 commit comments

Comments
 (0)