Change "quick-fix" to "quick fix"

This is the actual feature name we use everywhere.
This commit is contained in:
Karol Lewandowski 2023-12-07 10:14:00 +01:00
parent f2d534fa09
commit 8fda03526d
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
Comparing References Inspection Sample demonstrates the implementation of the [Code Inspections][docs:code_inspections] feature for Java classes. 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. 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 ### Extension Points

View File

@ -3,7 +3,7 @@
<body> <body>
Reports usages of <code>==</code> and <code>!=</code> when comparing instances of String. Reports usages of <code>==</code> and <code>!=</code> when comparing instances of String.
<p> <p>
Quick-fix replaces operator with <code>equals()</code> call. Quick fix replaces operator with <code>equals()</code> call.
</p> </p>
</body> </body>
</html> </html>