d4e76665e938408d8decc4beb257809fa6b22c78
galt
  Wed Nov 19 14:28:06 2025 -0800
fixed the code comment terminating characters for the isComplexSetting().

diff --git src/hg/lib/trackDb.c src/hg/lib/trackDb.c
index f160f2fb637..5bcab45a2c9 100644
--- src/hg/lib/trackDb.c
+++ src/hg/lib/trackDb.c
@@ -255,31 +255,31 @@
 if (sep == ',') fputc('"',f);
 fputc(sep,f);
 if (sep == ',') fputc('"',f);
 fprintf(f, "%s", el->grp);
 if (sep == ',') fputc('"',f);
 fputc(sep,f);
 fprintf(f, "%u", el->canPack);
 fputc(sep,f);
 if (sep == ',') fputc('"',f);
 fprintf(f, "%s", el->settings);
 if (sep == ',') fputc('"',f);
 fputc(lastSep,f);
 }
 
 boolean isComplexSetting(char *name)
-/* Check to see if this is one of the filter variables that have arbitrary initial strings. 
+/* Check to see if this is one of the filter variables that have arbitrary initial strings. */
 {
 if (startsWith("yAxisLabel.", name))
     return TRUE;
 if (startsWith("filter.", name))
     return TRUE;
 if (startsWith("filterValues.", name))
     return TRUE;
 if (startsWith("filterValuesDefault.", name))
     return TRUE;
 if (startsWith("filterType.", name))
     return TRUE;
 if (startsWith("filterLimits.", name))
     return TRUE;
 if (startsWith("filterLabel.", name))
     return TRUE;