Skip to content

Commit f720f98

Browse files
jantimarAlexanderPrendota
authored andcommitted
fix: unresolved reference: y on invalid parameter 03_Ranges.md (Kotlin#65)
Fix `Unresolved reference: y` on invalid parameter
1 parent 81c1115 commit f720f98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/02_control_flow/03_Ranges.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ fun main() {
7272
print(" ")
7373

7474
if (x !in 1..4) { // 2
75-
print(y)
75+
print(x)
7676
}
7777
//sampleEnd
7878
}

0 commit comments

Comments
 (0)