Skip to content

Commit

Permalink
Change "quick-fix" to "quick fix"
Browse files Browse the repository at this point in the history
This is the actual feature name we use everywhere.
  • Loading branch information
karollewandowski committed Dec 7, 2023
1 parent f2d534f commit 8fda035
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion comparing_string_references_inspection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<body>
Reports usages of <code>==</code> and <code>!=</code> when comparing instances of String.
<p>
Quick-fix replaces operator with <code>equals()</code> call.
Quick fix replaces operator with <code>equals()</code> call.
</p>
</body>
</html>

0 comments on commit 8fda035

Please sign in to comment.