s/sepcified/specified

This commit is contained in:
Thadeus Fleming 2017-06-16 13:58:45 -05:00
parent 6988aa77c2
commit 57cebe4c70
2 changed files with 2 additions and 2 deletions

View File

@ -157,7 +157,7 @@ public class SortedListModel extends AbstractListModel {
}
/**
* Checks to see if the list contains the sepcified element.
* Checks to see if the list contains the specified element.
*
* @param element Element whose presence in this list is to be tested.
*

View File

@ -698,7 +698,7 @@ public class SieApplication extends TrickApplication implements TreeSelectionLis
private static String getData(SieTemplate template) {
StringBuffer ret = new StringBuffer();
if (template.description == null || template.description.isEmpty()) {
ret.append("\tNot Sepcified\n");
ret.append("\tNot Specified\n");
} else {
ret.append("\t" + template.description + "\n");
}