[Code Samples Inspection] Java > Internationalization > Incorrect string capitalization

This commit is contained in:
Jakub Chrzanowski 2020-04-16 11:21:20 +02:00
parent 991d7ad24f
commit 302968b024
2 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ public class DemoRunConfigurationType implements ConfigurationType {
@Override
public String getConfigurationTypeDescription() {
return "Demo Run Configuration Type";
return "Demo run configuration type";
}
@Override

View File

@ -18,7 +18,7 @@ public class SimpleFileType extends LanguageFileType {
@NotNull
@Override
public String getName() {
return "Simple file";
return "Simple File";
}
@NotNull
@ -38,4 +38,4 @@ public class SimpleFileType extends LanguageFileType {
public Icon getIcon() {
return SimpleIcons.FILE;
}
}
}