summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNami-Doc <vendethiel@hotmail.fr>2014-08-25 06:23:56 -0400
committerNami-Doc <vendethiel@hotmail.fr>2014-08-25 06:23:56 -0400
commit3b121aa0ea63323df883ba6bbc473852a36b0015 (patch)
tree0114af2a1b05acad7e314fd9bff843f2cf533358
parent29c27b63c76f71b6ebd2db19a8a65c9911659e68 (diff)
parent3771906a8c93eeca9333189db5cf3374c69e085a (diff)
Merge pull request #735 from michaelrbock/patch-1
Fix typo in scala
-rw-r--r--scala.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/scala.html.markdown b/scala.html.markdown
index 6b398b4b..379c092c 100644
--- a/scala.html.markdown
+++ b/scala.html.markdown
@@ -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)