From 76a65af14b476a418930bf2310fc25c2a6031554 Mon Sep 17 00:00:00 2001 From: tommykw Date: Sat, 2 Nov 2019 23:39:03 +0900 Subject: [PATCH] Fix #KT-31967 Typo in inspection name: "+= create new list under the hood" --- .../inspections/SuspiciousCollectionReassignmentInspection.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() )