We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d06f23f commit 0f029d8Copy full SHA for 0f029d8
idea/src/org/jetbrains/kotlin/idea/inspections/ScopeFunctionConversionInspection.kt
@@ -55,7 +55,7 @@ class ScopeFunctionConversionInspection : AbstractKotlinInspection() {
55
if (counterpartName != null) {
56
holder.registerProblem(
57
expression.calleeExpression!!,
58
- "Call can be replaced with another scope function",
+ "Call is replaceable with another scope function",
59
ProblemHighlightType.GENERIC_ERROR_OR_WARNING,
60
if (counterpartName == "also" || counterpartName == "let")
61
ConvertScopeFunctionToParameter(counterpartName)
0 commit comments