From 8fda03526dda8f2de1c1e874f4000036ed8a7aad Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Thu, 7 Dec 2023 10:14:00 +0100 Subject: [PATCH] Change "quick-fix" to "quick fix" This is the actual feature name we use everywhere. --- comparing_string_references_inspection/README.md | 2 +- .../inspectionDescriptions/ComparingStringReferences.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.