InfixCallToOrdinaryIntention - smaller range + minor code improvements

This commit is contained in:
Valentin Kipyatkov
2015-04-29 17:37:01 +03:00
parent 1b7ac6bb02
commit 9dd67cfc4d
7 changed files with 21 additions and 19 deletions
@@ -2,5 +2,5 @@ trait Foo {
fun foo(f: (Int) -> Unit)
}
fun foo(x: Foo) {
<caret>x foo { it * 2 }
x <caret>foo { it * 2 }
}