diff --git a/comparing_string_references_inspection/README.md b/comparing_string_references_inspection/README.md index 719c54405..4704eee46 100644 --- a/comparing_string_references_inspection/README.md +++ b/comparing_string_references_inspection/README.md @@ -6,7 +6,7 @@ Comparing References Inspection Sample demonstrates the implementation of the [Code Inspections][docs:code_inspections] feature for Java classes. The plugin inspects your Java code and highlights any fragments containing the comparison of two `String` variables. -If such a check finds a comparison using the `==` or !`=` operators instead of the `.equals()` method, the plugin proposes a *quick-fix* action. +If such a check finds a comparison using the `==` or !`=` operators instead of the `.equals()` method, the plugin proposes a *quick fix* action. ### Extension Points diff --git a/comparing_string_references_inspection/src/main/resources/inspectionDescriptions/ComparingStringReferences.html b/comparing_string_references_inspection/src/main/resources/inspectionDescriptions/ComparingStringReferences.html index f68912c55..f47901cc0 100644 --- a/comparing_string_references_inspection/src/main/resources/inspectionDescriptions/ComparingStringReferences.html +++ b/comparing_string_references_inspection/src/main/resources/inspectionDescriptions/ComparingStringReferences.html @@ -3,7 +3,7 @@
Reports usages of==
and !=
when comparing instances of String.
- Quick-fix replaces operator with equals()
call.
+ Quick fix replaces operator with equals()
call.