RedundantLetInspection: fix descriptions

This commit is contained in:
Dmitry Gridin
2019-06-25 15:10:17 +07:00
parent 7e0db3d612
commit 2ef2c358c4
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -2234,7 +2234,7 @@
/>
<localInspection implementationClass="org.jetbrains.kotlin.idea.inspections.SimpleRedundantLetInspection"
displayName="Redundant `let` call"
displayName="Redundant receiver-based `let` call"
groupPath="Kotlin"
groupName="Redundant constructs"
enabledByDefault="true"
@@ -2243,7 +2243,7 @@
/>
<localInspection implementationClass="org.jetbrains.kotlin.idea.inspections.ComplexRedundantLetInspection"
displayName="Redundant `let` call could be removed"
displayName="Redundant argument-based `let` call"
groupPath="Kotlin"
groupName="Redundant constructs"
enabledByDefault="true"
@@ -1,5 +1,5 @@
<html>
<body>
This inspection detects a redundant <b>let</b> when it includes only one call with lambda parameter.
This inspection detects a redundant argument-based <b>let</b> call.
</body>
</html>
@@ -1,5 +1,5 @@
<html>
<body>
This inspection detects a redundant <b>let</b> when it includes only one call with lambda parameter as receiver.
This inspection detects a redundant receiver-based <b>let</b> call.
</body>
</html>