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/transMapPslToGenePred/transMapPslToGenePred.c src/hg/utils/transMapPslToGenePred/transMapPslToGenePred.c index 04a36d9e434..be83991f80e 100644 --- src/hg/utils/transMapPslToGenePred/transMapPslToGenePred.c +++ src/hg/utils/transMapPslToGenePred/transMapPslToGenePred.c @@ -510,31 +510,31 @@ } static int getExonCdsStart(struct genePred *gp, int iExon) /* get start of CDS in an exon */ { return max(gp->exonStarts[iExon], gp->cdsStart); } static int getExonCdsEnd(struct genePred *gp, int iExon) /* get end of CDS in an exon */ { return min(gp->exonEnds[iExon], gp->cdsEnd); } static int getExonCdsLen(struct genePred *gp, int iExon) -/* get the length of the the CDS in an exon */ +/* get the length of the CDS in an exon */ { int start, end; genePredCdsExon(gp, iExon, &start, &end); return end - start; } static int getExonEndFrame(struct genePred *gp, int iExon) /* get the end frame of exon (half-open) */ { if (gp->exonFrames[iExon] == -1) return -1; else return frameIncr(gp->exonFrames[iExon], getExonCdsLen(gp, iExon)); }