Skip to content

Commit 6a6e78c

Browse files
committed
goal init, micronaut-4 typo in Controller class name
1 parent e40cbb1 commit 6a6e78c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fj-doc-maven-plugin/src/main/java/org/fugerit/java/doc/project/facade/FlavourContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private String toClassName( String base, String splitString ) {
3737
StringBuilder buf = new StringBuilder();
3838
String[] split = base.split( splitString );
3939
for ( String part : split ) {
40-
buf.append( part.substring( 0, 1 ).toLowerCase()+part.substring( 1 ) );
40+
buf.append( part.substring( 0, 1 ).toUpperCase()+part.substring( 1 ) );
4141
}
4242
return buf.toString();
4343
}

0 commit comments

Comments
 (0)