1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 13:38:38 +01:00

Fix typo in scala

"less then" -> "less than"
This commit is contained in:
Michael Bock 2014-08-25 00:13:59 -07:00
parent 29c27b63c7
commit 3771906a8c

View File

@ -243,7 +243,7 @@ i // Show the value of i. Note that while is a loop in the classical sense -
// A do while loop
do {
println("x is still less then 10");
println("x is still less than 10");
x += 1
} while (x < 10)