diff --git a/idea/src/org/jetbrains/kotlin/idea/inspections/SuspiciousCollectionReassignmentInspection.kt b/idea/src/org/jetbrains/kotlin/idea/inspections/SuspiciousCollectionReassignmentInspection.kt index 36113a215c5..0ffe7bbca25 100644 --- a/idea/src/org/jetbrains/kotlin/idea/inspections/SuspiciousCollectionReassignmentInspection.kt +++ b/idea/src/org/jetbrains/kotlin/idea/inspections/SuspiciousCollectionReassignmentInspection.kt @@ -68,7 +68,7 @@ class SuspiciousCollectionReassignmentInspection : AbstractKotlinInspection() { val operationReference = binaryExpression.operationReference holder.registerProblem( operationReference, - "'${operationReference.text}' create new $typeText under the hood", + "'${operationReference.text}' creates new $typeText under the hood", ProblemHighlightType.GENERIC_ERROR_OR_WARNING, *fixes.toTypedArray() )