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/affyTransciptome/maxTranscriptomeExps.c src/hg/affyTransciptome/maxTranscriptomeExps.c index fd4a3c90a9a..725c46b2971 100644 --- src/hg/affyTransciptome/maxTranscriptomeExps.c +++ src/hg/affyTransciptome/maxTranscriptomeExps.c @@ -1,26 +1,26 @@ /* Copyright (C) 2011 The Regents of the University of California * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */ #include "common.h" #include "sample.h" void usage() { -errAbort("maxTranscriptomeExps - cycle through a list of of affy transcriptome\n" +errAbort("maxTranscriptomeExps - cycle through a list of affy transcriptome\n" "experiments and select the max for each position.\n" "usage:\n\t" "maxTranscriptomeExps <outputfile> <trackName> <list of input files>\n"); } void fillInMaxVals(struct sample *samp, struct sample **pSampList, int sampCount, int index) { int i,j; struct sample *s1 = NULL; for(i=0;i<sampCount; i++) { s1 = slElementFromIx(pSampList[i], index); for(j=0;j<samp->sampleCount; j++) {