Minor: Fix spelling of intention text

#KT-9639 Fixed
This commit is contained in:
Alexey Sedunov
2015-10-19 16:31:07 +03:00
parent 929d06c86f
commit 3d88df73e0
6 changed files with 6 additions and 9 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
// "Make 'A' abstract" "false"
// ERROR: <html>Class 'X' must override <b>public</b> <b>open</b> <b>fun</b> foo(): kotlin.Unit <i>defined in</i> X<br />because it inherits many implementations of it</html>
// ACTION: Create Test
// ACTION: Create test
// ACTION: Make internal
// ACTION: Make private
// ACTION: Move 'X' to separate file
@@ -1,6 +1,6 @@
// "Create class 'A'" "false"
// ACTION: Create interface 'A'
// ACTION: Create Test
// ACTION: Create test
// ERROR: Unresolved reference: A
package p
@@ -1,6 +1,6 @@
// "class org.jetbrains.kotlin.idea.quickfix.AddOpenModifierToClassDeclarationFix" "false"
// ERROR: This type is final, so it cannot be inherited from
// ACTION: Create Test
// ACTION: Create test
import testPackage.*
class foo : <caret>JavaClass() {}
+1 -1
View File
@@ -1,5 +1,5 @@
// "Cast expression 'Foo<Number>()' to 'Foo<Int>'" "false"
// ACTION: Create Test
// ACTION: Create test
// ERROR: <html>Type mismatch.<table><tr><td>Required:</td><td>Foo&lt;kotlin.Int&gt;</td></tr><tr><td>Found:</td><td>Foo&lt;kotlin.Number&gt;</td></tr></table></html>
class Foo<T>
@@ -1,6 +1,6 @@
// "Remove 'val' from parameter" "false"
// ACTION: Make internal
// ACTION: Make private
// ACTION: Create Test
// ACTION: Create test
class C(<caret>val x: String) {
}