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
@@ -15,7 +15,7 @@ add.modifier.family=Add Modifier
make.class.annotation.class=Make ''{0}'' an annotation class
make.class.annotation.class.family=Make Class an Annotation Class
add.star.projections=Add ''{0}''
change.to.star.projection=Change type argument list to {0}
change.to.star.projection=Change type arguments to {0}
change.to.star.projection.family=Change to Star Projection
make.element.not.modifier=Make {0} not {1}
remove.modifier=Remove ''{0}'' modifier
@@ -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>)