diff options
author | Michael Bock <michael@michaelrbock.com> | 2014-08-25 00:13:59 -0700 |
---|---|---|
committer | Michael Bock <michael@michaelrbock.com> | 2014-08-25 00:13:59 -0700 |
commit | 3771906a8c93eeca9333189db5cf3374c69e085a (patch) | |
tree | 0114af2a1b05acad7e314fd9bff843f2cf533358 /scala.html.markdown | |
parent | 29c27b63c76f71b6ebd2db19a8a65c9911659e68 (diff) |
Fix typo in scala
"less then" -> "less than"
Diffstat (limited to 'scala.html.markdown')
-rw-r--r-- | scala.html.markdown | 2 |
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) |