Skip to content

Commit 0f029d8

Browse files
committed
Scope function conversion: remove 'can' from description to fix tests
1 parent d06f23f commit 0f029d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

idea/src/org/jetbrains/kotlin/idea/inspections/ScopeFunctionConversionInspection.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class ScopeFunctionConversionInspection : AbstractKotlinInspection() {
5555
if (counterpartName != null) {
5656
holder.registerProblem(
5757
expression.calleeExpression!!,
58-
"Call can be replaced with another scope function",
58+
"Call is replaceable with another scope function",
5959
ProblemHighlightType.GENERIC_ERROR_OR_WARNING,
6060
if (counterpartName == "also" || counterpartName == "let")
6161
ConvertScopeFunctionToParameter(counterpartName)

0 commit comments

Comments
 (0)