scala: consistent code format

This commit is contained in:
Ha-Duong, NGUYEN 2015-08-03 15:55:59 +07:00
parent efb338608b
commit 7c02089687

View File

@ -241,7 +241,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 than 10");
println("x is still less than 10")
x += 1
} while (x < 10)