Skip to content

Commit b469185

Browse files
committed
Fix mistake in example program
1 parent 8e3c484 commit b469185

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data/part-1/6-conditional-statements.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1100,7 +1100,7 @@ if (luku >= 5 && luku <= 10) {
11001100
System.out.println("Is the number within the range 5-10: ");
11011101
int number = 7;
11021102

1103-
if (number >= 4 && number <= 10) {
1103+
if (number >= 5 && number <= 10) {
11041104
System.out.println("It is! :)");
11051105
} else {
11061106
System.out.println("It is not :(")

0 commit comments

Comments
 (0)