Fix #KT-31967 Typo in inspection name: "+= create new list under the hood"

This commit is contained in:
tommykw
2019-11-02 23:39:03 +09:00
committed by Mikhail Glukhikh
parent ae827bfd80
commit 76a65af14b
@@ -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()
)