From f8f644d891ba8dede049e27f8ede47a060b74603 Mon Sep 17 00:00:00 2001 From: s-webber Date: Sat, 19 Mar 2016 10:06:54 +0000 Subject: [PATCH] removed unnecessary brackets --- kotlin.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)}") }