fixed typos and grammar

This commit is contained in:
Karl Tauber
2024-01-11 18:11:09 +01:00
parent 6fdc56f2d3
commit cf3fa17666
49 changed files with 90 additions and 91 deletions

View File

@@ -217,7 +217,7 @@ class FlatFindReplaceBar
context.setReplaceWith( replaceField.getText() );
// make sure that search wrap is disabled because otherwise it is easy
// to have endeless loop when replacing e.g. "a" with "aa"
// to have endless loop when replacing e.g. "a" with "aa"
boolean oldSearchWrap = context.getSearchWrap();
context.setSearchWrap( false );

View File

@@ -401,7 +401,7 @@ class FlatThemeFileEditor
if( !themesDir.isDirectory() )
return propertiesFiles;
// get files from "themes" sub-directory
// get files from "themes" subdirectory
File[] themesFiles = getPropertiesFiles( themesDir );
File[] allFiles = new File[propertiesFiles.length + themesFiles.length];
System.arraycopy( propertiesFiles, 0, allFiles, 0, propertiesFiles.length );