summaryrefslogtreecommitdiffhomepage
path: root/kotlin.html.markdown
diff options
context:
space:
mode:
authors-webber <webbers.github@gmail.com>2016-03-19 10:06:54 +0000
committers-webber <webbers.github@gmail.com>2016-03-19 10:06:54 +0000
commitf8f644d891ba8dede049e27f8ede47a060b74603 (patch)
tree803c5e4385ff341f7a0ed3edfdd322029b617931 /kotlin.html.markdown
parent1bec0f608977c00757c8f5732eedce2e57bb9bc3 (diff)
removed unnecessary brackets
Diffstat (limited to 'kotlin.html.markdown')
-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)}")
}