7564d030f4584b8f55c8a002f41f50e44deb4d11
galt
  Mon Nov 20 14:33:53 2017 -0800
fix typo in usage statement

diff --git src/hg/geoIp/geoIpToCountry.c src/hg/geoIp/geoIpToCountry.c
index f776be3..6d25d42 100644
--- src/hg/geoIp/geoIpToCountry.c
+++ src/hg/geoIp/geoIpToCountry.c
@@ -10,31 +10,31 @@
 #include "internet.h"
 
 #define MAXWORDS 1024
 
 /* command line option specifications */
 static struct optionSpec optionSpecs[] = {
     {"-help"    , OPTION_BOOLEAN},
     {NULL, 0}
 };
 
 
 void usage(char *p) 
 /* display correct usage/syntax */
 {
 errAbort("Usage:\n"
-    "%s geoipCvsFile\n"
+    "%s geoipCsvFile\n"
     "Processes the IP ranges from decimal form to IP-string form, ignores comments and country-code ZZ Reserved.\n"
     ,p);
 }
 
 
 void geoIpToCountry(char *fileName) 
 /* List each field in tab-separated file on a new line, dashed-lines separate records */
 {
 
 struct lineFile *lf = lineFileOpen(fileName, TRUE);
 int lineSize;
 char *line;
 char *words[MAXWORDS];
 int wordCount;