24ff088d65aa4b5765f2d1ba96f293d906a70705
braney
  Wed Dec 10 14:02:38 2014 -0800
changes in response to code review #14504
diff --git src/hg/lib/hui.c src/hg/lib/hui.c
index dc2d7f1..8ce9737 100644
--- src/hg/lib/hui.c
+++ src/hg/lib/hui.c
@@ -4594,31 +4594,31 @@
 void cfgEndBox(boolean boxed)
 // Handle end of box and title for individual track type settings
 {
 if (boxed)
     puts("</td></tr></table>");
 }
 
 void wigOption(struct cart *cart, char *name, char *title, struct trackDb *tdb)
 /* let the user choose to see the track in wiggle mode */
 {
 char *canDoCoverage = cfgOptionEnvDefault("HGDB_CAN_DO_COVERAGE",
                 CanDoCoverageConfVariable, "off");
 if (differentString(canDoCoverage, "on"))
     return;
 
-printf("<BR><B>Display data as a wiggle:</B> ");
+printf("<BR><B>Display data as a density graph:</B> ");
 char varName[64];
 safef(varName, sizeof(varName), "%s.doWiggle", name);
 boolean option = cartUsualBoolean(cart, varName, FALSE);
 cgiMakeCheckBox(varName, option);
 printf("<BR>\n");
 wigCfgUi(cart,tdb,name,title,TRUE);
 }
 
 void wigCfgUi(struct cart *cart, struct trackDb *tdb, char *name, char *title, boolean boxed)
 /* UI for the wiggle track */
 {
 char *typeLine = NULL;  /*  to parse the trackDb type line  */
 char *words[8];     /*  to parse the trackDb type line  */
 int wordCount = 0;  /*  to parse the trackDb type line  */
 char option[256];