Skip to content

Commit 35bc531

Browse files
Fix indentation (#106)
Co-authored-by: Ethan McCue <[email protected]>
1 parent 56c1e31 commit 35bc531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/standard_input_ii/enums.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ enum StopLight {
3232
void main() {
3333
StopLight color;
3434
while (true) {
35-
String colorString = IO.readln("What color was the stoplight? ");
35+
String colorString = IO.readln("What color was the stoplight? ");
3636
try {
3737
color = StopLight.valueOf(colorString);
3838
} catch (RuntimeException e) {

0 commit comments

Comments
 (0)