Replaced "argument list" with "arguments" in quick fix text.

This commit is contained in:
Evgeny Gerashchenko
2013-03-02 21:16:17 +04:00
parent 64321dce56
commit 5d33f779be
11 changed files with 11 additions and 11 deletions
@@ -1,4 +1,4 @@
// "Change type argument list to <*>" "true"
// "Change type arguments to <*>" "true"
public fun foo(a: Any) {
a as List<*>
}
@@ -1,4 +1,4 @@
// "Change type argument list to <*, *>" "true"
// "Change type arguments to <*, *>" "true"
public fun foo(a: Any?) {
a as Map<*, *>?
}
@@ -1,4 +1,4 @@
// "Change type argument list to <*>" "true"
// "Change type arguments to <*>" "true"
public fun foo(a: Any) {
a as List<Int><caret>
}
@@ -1,4 +1,4 @@
// "Change type argument list to <*, *>" "true"
// "Change type arguments to <*, *>" "true"
public fun foo(a: Any?) {
a as Map<*, Int>?<caret>
}