689a55597aa8486ca5d82919692138c22a8ee3c0
kent
  Wed Mar 28 11:21:51 2012 -0700
Improving comments.
diff --git src/inc/common.h src/inc/common.h
index 518ae17..35084d5 100644
--- src/inc/common.h
+++ src/inc/common.h
@@ -908,31 +908,31 @@
 int chopByChar(char *in, char chopper, char *outArray[], int outSize);
 /* Chop based on a single character. */
 
 #define chopTabs(string, words) chopByChar(string, '\t', words, ArraySize(words))
 /* Chop string by tabs. */
 
 #define chopCommas(string, words) chopByChar(string, ',', words, ArraySize(words))
 /* Chop string by commas. */
 
 
 char *skipBeyondDelimit(char *s,char delimit);
 /* Returns NULL or pointer to first char beyond one (or more contiguous) delimit char.
    If delimit is ' ' then skips beyond first patch of whitespace. */
 
 char *skipLeadingSpaces(char *s);
-/* Return first non-white space */
+/* Return first white space or NULL if none.. */
 
 char *skipToSpaces(char *s);
 /* Return first white space. */
 
 void eraseTrailingSpaces(char *s);
 /* Replace trailing white space with zeroes. */
 
 void eraseWhiteSpace(char *s);
 /* Remove white space from a string */
 
 void eraseNonAlphaNum(char *s);
 /* Remove non-alphanumeric chars from string */
 
 char *trimSpaces(char *s);
 /* Remove leading and trailing white space. */