1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-16 11:45:04 +02:00

Merge pull request #735 from michaelrbock/patch-1

Fix typo in scala
This commit is contained in:
Nami-Doc
2014-08-25 06:23:56 -04:00

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)