Consistency for replace string quick fix message

https://youtrack.jetbrains.com/issue/KT-21746#comment=27-2634335
This commit is contained in:
Nikolay Krasko
2017-12-19 16:21:46 +03:00
parent 95cc3fe1b7
commit b80403cf13
@@ -44,5 +44,5 @@ class ReplaceStringInDocumentFix(element: PsiElement, private val oldString: Str
document.replaceString(start, end, newString)
}
override fun getFamilyName() = "Replace '$oldString' with $newString"
override fun getFamilyName() = "Replace '$oldString' with '$newString'"
}