summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--kotlin.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/kotlin.html.markdown b/kotlin.html.markdown
index ae0123a7..47577906 100644
--- a/kotlin.html.markdown
+++ b/kotlin.html.markdown
@@ -133,7 +133,7 @@ fun helloWorld(val name : String) {
The name of the single parameter will be "it".
*/
val notPositive = not {it > 0}
- for (i in (0..4)) {
+ for (i in 0..4) {
println("${notOdd(i)} ${notEven(i)} ${notZero(i)} ${notPositive(i)}")
}