Minor changes after code review

This commit is contained in:
Valentin Kipyatkov
2016-04-05 20:41:04 +03:00
parent 863040700e
commit 50bd766992
8 changed files with 60 additions and 14 deletions
@@ -1,3 +1,3 @@
fun foo(list: List<String>): String? {
<spot>return list.firstOrNull { s -> s.length > 0 }</spot>
<spot>return list.firstOrNull { it.length > 0 }</spot>
}