- Fixed several misspellings, changed occured to occurred.

This commit is contained in:
jendave
2011-08-06 21:32:55 +00:00
parent d42a6acb8d
commit 1f13a2b676
5 changed files with 6 additions and 6 deletions

View File

@@ -200,12 +200,12 @@ public class TreeProperties implements Iterable<PropertyElement> {
}
/**
* If exceptions occured during construction, this method throws an IOException that combines the messages of
* If exceptions occurred during construction, this method throws an IOException that combines the messages of
* those exceptions.
*/
public void rethrow() throws IOException {
if(exceptions.isEmpty()) return;
StringBuilder sb = new StringBuilder("The following exceptions occured:");
StringBuilder sb = new StringBuilder("The following exceptions occurred:");
for(Exception ex:exceptions) {
sb.append("\n");
sb.append(ex.getMessage());