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>
}
@@ -1,2 +1,2 @@
// "Change type argument list to <*, *>" "true"
// "Change type arguments to <*, *>" "true"
fun isStringToIntMap(map : Any) = map is Map<<caret>*, *>
@@ -1,2 +1,2 @@
// "Change type argument list to <*>" "true"
// "Change type arguments to <*>" "true"
fun isStringList(list : Any) = list is List<<caret>*>?
@@ -1,2 +1,2 @@
// "Change type argument list to <*>" "true"
// "Change type arguments to <*>" "true"
fun isStringList(list : Any?) = list is (List<<caret>*>)
@@ -1,2 +1,2 @@
// "Change type argument list to <*, *>" "true"
// "Change type arguments to <*, *>" "true"
fun isStringToIntMap(map : Any) = map is Map<<caret>String, Int>
@@ -1,2 +1,2 @@
// "Change type argument list to <*>" "true"
// "Change type arguments to <*>" "true"
fun isStringList(list : Any) = list is List<<caret>String>?
@@ -1,2 +1,2 @@
// "Change type argument list to <*>" "true"
// "Change type arguments to <*>" "true"
fun isStringList(list : Any?) = list is (List<<caret>String>)