10a0aa93dc97a992e8f946d9a89495131f8307a5
galt
  Sat Jun 27 09:52:42 2015 -0700
fixing typo in comment

diff --git src/hg/lib/jksql.c src/hg/lib/jksql.c
index 8ec042b..a593130 100644
--- src/hg/lib/jksql.c
+++ src/hg/lib/jksql.c
@@ -3319,31 +3319,31 @@
 
 static void sqlCheckAllowAlphaChars(char allowed[256])
 /* Allow all chars by setting to 0 */
 {
 sqlCheckAllowUpperChars(allowed);
 sqlCheckAllowLowerChars(allowed);
 }
 
 static void sqlCheckAllowAlphaNumChars(char allowed[256])
 /* Allow all chars by setting to 0 */
 {
 sqlCheckAllowAlphaChars(allowed);
 sqlCheckAllowDigitChars(allowed);
 }
 
-/* Currently used 10 times in the code via define sqlChkIl. */
+/* Currently used 10 times in the code via define sqlCkIl. */
 char *sqlCheckIdentifiersList(char *identifiers)
 /* Check that only valid identifier characters are used in a comma-separated list
  * '.' is allowed also since some code uses it in place of an actual field name.
  * See hgTables/bedList.c::bedSqlFieldsExceptForChrom(). */
 {
 static boolean init = FALSE;
 static char allowed[256];
 if (!init)
     {
     sqlCheckDisallowAllChars(allowed);
     sqlCheckAllowAlphaNumChars(allowed);
     sqlCheckAllowChar('.', allowed);
     sqlCheckAllowChar('_', allowed);
     // sqlTableExists looks like a single table check, but apparently it has become abused
     // to support multiple tables e.g. sqlTableExists