Further code improvements during review

This commit is contained in:
Valentin Kipyatkov
2015-04-16 19:06:44 +03:00
parent 1aa123dadb
commit 6421f48c07
17 changed files with 62 additions and 77 deletions
@@ -2,5 +2,5 @@
fun main() {
val list = 1..4
list.forEach {(x: Int) -> x }
list.forEach { x: Int -> x }
}
@@ -2,5 +2,5 @@
fun main() {
val list = 1..4
list.forEach {(x: Int) -> 11 }
list.forEach { x: Int -> 11 }
}