Skip to content

Commit 8fcfbdc

Browse files
committed
Fix recipe display name capitalization
1 parent 35781e1 commit 8fcfbdc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/openrewrite/java/migrate/lang/var/UseVarForGenericMethodInvocations.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ public class UseVarForGenericMethodInvocations extends Recipe {
3232
@Override
3333
public String getDisplayName() {
3434
//language=markdown
35-
return "Apply `var` to Generic Method Invocations";
35+
return "Apply `var` to generic method invocations";
3636
}
3737

3838
@Override
3939
public String getDescription() {
4040
//language=markdown
41-
return "Apply `var` to variables initialized by invocations of Generic Methods. " +
41+
return "Apply `var` to variables initialized by invocations of generic methods. " +
4242
"This recipe ignores generic factory methods without parameters, because open rewrite cannot handle them correctly ATM.";
4343
}
4444

0 commit comments

Comments
 (0)