3db237ff65edd8bfc52f4b22088feb2acbc78bd0
mspeir
  Tue Nov 24 11:32:18 2015 -0800
Correcting spelling mistakes in usage and error messages, refs #14062

diff --git src/utils/countChars/countChars.c src/utils/countChars/countChars.c
index 578549a..1aa1c09 100644
--- src/utils/countChars/countChars.c
+++ src/utils/countChars/countChars.c
@@ -1,27 +1,27 @@
 /* countChars - Count the number of occurences of a particular char. */
 
 /* Copyright (C) 2011 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 #include "common.h"
 
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
-  "countChars - Count the number of occurences of a particular char\n"
+  "countChars - Count the number of occurrences of a particular char\n"
   "usage:\n"
   "   countChars char file(s)\n"
   "Char can either be a two digit hexadecimal value or\n"
   "a single letter literal character");
 }
 
 int unhex(char *s)
 /* Return hex val of s. */
 {
 int acc = 0;
 char c;
 
 tolowers(s);
 while ((c = *s++) != 0)
     {