Skip to content

Commit

Permalink
add in custom file
Browse files Browse the repository at this point in the history
  • Loading branch information
justinkelly committed Feb 14, 2012
1 parent 6d85d17 commit 3339c4a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions merge_primo_misspell.pl
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,22 @@ ($)
close(ORIG);
close(OUTPUT);


#################################################
#Merge the contents of the custom misspell file #
#################################################
open (ORIG, "custom_misspell.txt");
open (OUTPUT, '>',"$primo_version/misspell_eng.txt");

while (<ORIG>) {
chomp;
print OUTPUT "$_\n";
}

close(ORIG);
close(OUTPUT);


##############################################################
# Clean up wiki.txt spellings and merge with orig primo file #
##############################################################
Expand Down

0 comments on commit 3339c4a

Please sign in to comment.