From 7730473352e369336e8e7d1a55563f413836d898 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. --- code_samples/comparing_string_references_inspection/README.md | 2 +- .../inspectionDescriptions/ComparingStringReferences.html | 2 +- topics/appendix/resources/learning_resources.md | 2 +- topics/basics/plugin_types.md | 2 +- topics/reference_guide/project_model/sdk.md | 2 +- topics/tutorials/custom_language_support/grammar_and_parser.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code_samples/comparing_string_references_inspection/README.md b/code_samples/comparing_string_references_inspection/README.md index 719c54405..4704eee46 100644 --- a/code_samples/comparing_string_references_inspection/README.md +++ b/code_samples/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/code_samples/comparing_string_references_inspection/src/main/resources/inspectionDescriptions/ComparingStringReferences.html b/code_samples/comparing_string_references_inspection/src/main/resources/inspectionDescriptions/ComparingStringReferences.html index f68912c55..f47901cc0 100644 --- a/code_samples/comparing_string_references_inspection/src/main/resources/inspectionDescriptions/ComparingStringReferences.html +++ b/code_samples/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.

diff --git a/topics/appendix/resources/learning_resources.md b/topics/appendix/resources/learning_resources.md index 955aee62c..4eb0350ee 100644 --- a/topics/appendix/resources/learning_resources.md +++ b/topics/appendix/resources/learning_resources.md @@ -43,6 +43,6 @@ A tutorial blog post series for JavaScript developers. | **IntelliJ IDEA Conf 2021**

Various Speakers, 02/2021