Skip to content

Commit 40b8662

Browse files
armeetjphrdang
andauthored
Update src/com/codefortomorrow/beginner/chapter2/solutions/VariableTypes.java
Co-authored-by: Rebecca Dang <[email protected]>
1 parent 199fb87 commit 40b8662

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/codefortomorrow/beginner/chapter2/solutions/VariableTypes.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static void main(String[] args) {
2020
// define a double variable on line 21
2121
double decimal = 23.2352536d;
2222

23-
// define a boolean variable on line 24 (Hint: true/false) on line 24
23+
// define a boolean variable on line 24 (Hint: true/false)
2424
double dogsOut = true; // the dogs are out :)
2525

2626
// define a character variable on line 27
@@ -31,4 +31,4 @@ public static void main(String[] args) {
3131

3232
}
3333
}
34-
34+

0 commit comments

Comments
 (0)