Skip to content
This repository has been archived by the owner on Jul 30, 2021. It is now read-only.

Commit

Permalink
Fix uncapitalize
Browse files Browse the repository at this point in the history
  • Loading branch information
jwgmeligmeyling committed Nov 3, 2020
1 parent c5e4323 commit 60c2aac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/querydsl/codegen/utils/StringUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static String capitalize(String str) {
}

public static String uncapitalize(String str) {
return str.substring(0, 1).toUpperCase() + str.substring(1);
return str.substring(0, 1).toLowerCase() + str.substring(1);
}

public static String escapeJava(String str) {
Expand Down

0 comments on commit 60c2aac

Please sign in to comment.