diff options
-rwxr-xr-x | modules/misc_cleanup/usfm_charmap.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/misc_cleanup/usfm_charmap.pl b/modules/misc_cleanup/usfm_charmap.pl index 8ae1f9e..305ce94 100755 --- a/modules/misc_cleanup/usfm_charmap.pl +++ b/modules/misc_cleanup/usfm_charmap.pl @@ -43,7 +43,7 @@ binmode (STDOUT,":utf8"); ## Obtain arguments if (scalar(@ARGV) < 1) { - print "\nusfm_charmap.pl <osisfile> [-o outputfile]\n\n"; + print "\nusfm_charmap.pl <usfmfile> [-o outputfile]\n\n"; print "- prints a list of characters in text parts of an USFM file, ignoring tags etc\n"; print "- Arguments in braces < > are required. Arguments in brackets [ ] are optional.\n"; print "- If no -o option is specified the output goes to <STDOUT>.\n"; @@ -60,7 +60,7 @@ if (@ARGV[1] eq "-o") { select(OUTF); } -## Initialise OSIS file +## Initialise USFM file open INF, "<:utf8",$file; my @doc = <INF>; close INF; |