Renamed intention to more clear name

This commit is contained in:
Valentin Kipyatkov
2015-04-29 17:29:03 +03:00
parent 7d6145e105
commit 1b7ac6bb02
20 changed files with 48 additions and 50 deletions
@@ -0,0 +1,6 @@
trait Foo {
fun foo(f: (Int) -> Unit)
}
fun foo(x: Foo) {
<caret>x foo { it * 2 }
}