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/hgCoordConv/hgCoordConv.c src/hg/hgCoordConv/hgCoordConv.c
index 45857ab724c..4b1d969b147 100644
--- src/hg/hgCoordConv/hgCoordConv.c
+++ src/hg/hgCoordConv/hgCoordConv.c
@@ -946,31 +946,31 @@
 	if(success)
 	    numGood++;
 	else
 	    numBad++;
 	}
     else
 	{
 	tooManyNs++;
 	}
     freeDnaSeq(&seq);
     coordConvFree(&cc);
     }
 carefulClose(&good);
 carefulClose(&bad);
 printf("\tDone.\n");
-printf("Out of %d attempts got %d 'succesfully converted' and %d 'had problems', %d had too many N's\n",
+printf("Out of %d attempts got %d 'successfully converted' and %d 'had problems', %d had too many N's\n",
        (numGood + numBad), numGood, numBad, tooManyNs);
 printf("After checking got %d of %d correctly called and %d incorrectly called.\n",
        hgTestCorrect, hgTestCorrect+hgTestWrong, hgTestWrong);
 }
 
 int main(int argc, char *argv[])
 {
 if(argc == 1 && !cgiIsOnWeb())
     usage();
 cgiSpoof(&argc, argv);
 checkArguments();
 hSetDb(origGenome);
 if(hgTest)
     runSamples("hgCoordConv.test.good", "hgCoordConv.test.bad", origGenome, origGenome, numTests);
 else