7302f9df405d8697c5a050c03bc148218e80dc11
dschmelt
  Tue Jun 30 12:40:03 2020 -0700
Updating documentation #25805

diff --git src/hg/hgHubConnect/hgHubConnect.c src/hg/hgHubConnect/hgHubConnect.c
index 0afb3c4..21ca414 100644
--- src/hg/hgHubConnect/hgHubConnect.c
+++ src/hg/hgHubConnect/hgHubConnect.c
@@ -442,31 +442,31 @@
 char *measureTiming = cartCgiUsualString(cart, "measureTiming", NULL);
 char *udcTimeout = cartCgiUsualString(cart, "udcTimeout", NULL);
 boolean doMeasureTiming = isNotEmpty(measureTiming);
 boolean doUdcTimeout = isNotEmpty(udcTimeout);
 
 printf("<div id=\"extraSettingsList\" style=\"display: none\">\n");
 printf("<ul style=\"list-style-type:none\">\n<li>\n");
 // measureTiming first
 printf("<input name=\"addMeasureTiming\" id=\"addMeasureTiming\" "
     "class=\"hubField\" type=\"checkbox\" %s>", doMeasureTiming ? "checked": "");
 printf("<label for=\"addMeasureTiming\">Display load times</label>\n");
 
 // and a tooltip explaining this checkbox
 printf("<div class=\"tooltip\"> (?)\n");
 printf("<span class=\"tooltiptext\">"
-    "Checking this box shows the timing measurements below the Genome Browser image. "
+    "Checking this box shows the timing measurements at the bottom of the Genome Browser page. "
     "Useful for determining slowdowns to loading or drawing tracks."
     "</span>\n");
 printf("</div></li>\n"); // tooltip div
 
 printf("<li>\n");
 // udcTimeout enable/disable
 printf("<input name=\"disableUdcTimeout\" id=\"disableUdcTimeout\" "
     "class=\"hubField\" type=\"checkbox\" %s >", doUdcTimeout ? "checked" : "");
 printf("<label for=\"disableUdcTimeout\">Enable hub refresh</label>\n");
 // add a tooltip explaining these checkboxes
 printf("<div class=\"tooltip\"> (?)\n");
 printf("<span class=\"tooltiptext\">"
     "Checking this box changes the cache expiration time (default of 5 minutes) "
     "and allows the Genome Browser to reload Hub configuration and data files with each refresh."
     "</span>\n");