@@ -318,7 +318,7 @@ const char *GetNextFilename(int argc, const char* const * argv) {
318
318
319
319
/* ---------------------------------------------------------------------------*/
320
320
/* *
321
- * This routine searches thru a list of labeled lists to find
321
+ * This routine searches through a list of labeled lists to find
322
322
* a list with the specified label. If a matching labeled list
323
323
* cannot be found, NULL is returned.
324
324
* @param List list to search
@@ -461,10 +461,10 @@ void FreeTrainingSamples(LIST CharList) {
461
461
LIST FeatureList;
462
462
463
463
464
- iterate(CharList) { /* iterate thru all of the fonts */
464
+ iterate(CharList) { /* iterate through all of the fonts */
465
465
char_sample = (LABELEDLIST) first_node (CharList);
466
466
FeatureList = char_sample->List ;
467
- iterate(FeatureList) { /* iterate thru all of the classes */
467
+ iterate(FeatureList) { /* iterate through all of the classes */
468
468
FeatureSet = (FEATURE_SET) first_node (FeatureList);
469
469
FreeFeatureSet (FeatureSet);
470
470
}
@@ -743,7 +743,7 @@ void FreeLabeledClassList (
743
743
{
744
744
MERGE_CLASS MergeClass;
745
745
746
- iterate (ClassList) /* iterate thru all of the fonts */
746
+ iterate (ClassList) /* iterate through all of the fonts */
747
747
{
748
748
MergeClass = (MERGE_CLASS) first_node (ClassList);
749
749
free (MergeClass->Label );
@@ -841,7 +841,7 @@ void FreeNormProtoList (
841
841
{
842
842
LABELEDLIST char_sample;
843
843
844
- iterate (CharList) /* iterate thru all of the fonts */
844
+ iterate (CharList) /* iterate through all of the fonts */
845
845
{
846
846
char_sample = (LABELEDLIST) first_node (CharList);
847
847
FreeLabeledList (char_sample);
0 commit comments