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/utils/fixTrackDb/fixTrackDb.c src/hg/utils/fixTrackDb/fixTrackDb.c
index e54bd5950a5..43ec1916a38 100644
--- src/hg/utils/fixTrackDb/fixTrackDb.c
+++ src/hg/utils/fixTrackDb/fixTrackDb.c
@@ -2,31 +2,31 @@
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 #include "hdb.h"
 #include "trackDb.h"
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "fixTrackDb - check for data accessible for everything in trackDb table\n"
   "usage:\n"
   "   fixTrackDb database trackDbTable\n"
   "options:\n"
-  "  -gbdbList=list - list of files to confirm existance of bigDataUrl files\n"
+  "  -gbdbList=list - list of files to confirm existence of bigDataUrl files\n"
   );
 }
 
 static struct hash *gbdbHash = NULL;
 
 /* Command line validation table. */
 static struct optionSpec options[] = {
    {"gbdbList", OPTION_STRING},
    {NULL, 0},
 };
 
 static void drop(char *db, char *trackDb, char *name)
 {
 printf("delete from %s.%s where tableName = '%s';\n", db, trackDb, name);
 }