diff options
author | Peter von Kaehne <refdoc@gmx.net> | 2017-05-19 08:00:25 +0000 |
---|---|---|
committer | Peter von Kaehne <refdoc@gmx.net> | 2017-05-19 08:00:25 +0000 |
commit | 778a7fcddd35f789f142728d9e3788b9cae1aef1 (patch) | |
tree | 416e7f91a704732690d580132742a49e26fa53ef | |
parent | 3b306e1248e7cf0880b3a1320a88ab7243b6b9a0 (diff) | |
download | sword-tools-778a7fcddd35f789f142728d9e3788b9cae1aef1.tar.gz |
typo in output
git-svn-id: https://www.crosswire.org/svn/sword-tools/trunk@512 07627401-56e2-0310-80f4-f8cd0041bdcd
-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; |