198c9b8daecc44fbda6a6494c566c723920f030a
lrnassar
  Wed Mar 11 18:25:21 2026 -0700
Fixing a few hundred clear typos with the help of Claude. Some are less important in code comments, but majority of them are in user-facing places. I manually approved 60%+ of the changes and didn't see any that were an incorrect suggestion, at worst it was potentially uncessesary, like a code comment having cant instead of can't. No RM.

diff --git src/hg/lib/hdb.c src/hg/lib/hdb.c
index 4d861601709..47375013db5 100644
--- src/hg/lib/hdb.c
+++ src/hg/lib/hdb.c
@@ -4277,31 +4277,31 @@
     {
     // this means the db has a hub_#_ prefix but didn't get loaded at init time
     unsigned hubId = hubIdFromTrackName(db);
     struct hubConnectStatus *status = hubFromIdNoAbort(hubId);
 
     if (status == NULL)
         errAbort("Error: The database in the hub (%s) that is saved in your session is no longer accessible."
                  " This may be due because the hub ID (%d) in your session cannot be transferred across"
                  " different Genome Browser machines.\n",hubConnectSkipHubPrefix(db), hubId);
     else if (status->errorMessage)
         errAbort("Error: The database %s in the hub %s that is saved in your session encountered an error:\n"
                  "%s.\n"
                  " This may be due to the hub moving to a new hosting location. We recommend contacting"
                  " the hub authors for assistance.",hubConnectSkipHubPrefix(db), status->hubUrl, status->errorMessage); 
     else
-        errAbort("Error: The genome %s in in the hub is no longer available. Please reach out to the hub authors"
+        errAbort("Error: The genome %s in the hub is no longer available. Please reach out to the hub authors"
                  " for further information: %s\n", hubConnectSkipHubPrefix(db), status->hubUrl);
     }
 
 struct trackDb *tdbList = NULL;
 
 boolean doCache = trackDbCacheOn();
 char *tdbPathString = hTrackDbPath();
 
 if (doCache)
     {
     struct slName *tableList = hTrackDbList();
 
     struct sqlConnection *conn = hAllocConn(db);
     time_t newestTime = 0;
     for(; tableList; tableList = tableList->next)