Corrections on code review

This commit is contained in:
Valentin Kipyatkov
2015-07-22 21:02:40 +03:00
parent 2ad981d5c9
commit 8c02ce73a4
9 changed files with 33 additions and 12 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
fun foo(list: List<String>): Collection<Int> {
fun foo(list: List<String>) {
bar(list.map { it.<caret> })
}