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/hgc/hgc.c src/hg/hgc/hgc.c index 03b20605484..1fdbec2d209 100644 --- src/hg/hgc/hgc.c +++ src/hg/hgc/hgc.c @@ -24645,31 +24645,31 @@ if (!hFindSplitTable(database, seqName, pslTable, fullTable, sizeof fullTable, &hasBin)) errAbort("track %s not found", pslTable); sqlSafef(query, sizeof query, "SELECT * FROM %s WHERE " "tName = '%s' AND tStart = %d " "AND tEnd = %d", pslTable, chrom, start, end); sr = sqlMustGetResult(conn, query); row = sqlNextRow(sr); if(row != NULL) { psl = pslLoad(row+hasBin); } else { - errAbort("No alignment infomation\n"); + errAbort("No alignment information\n"); } qSeq = loadGenomePart(db, psl->qName, psl->qStart, psl->qEnd); safef(name, sizeof name, "%s in %s(%d-%d)", item,psl->qName, psl->qStart, psl->qEnd); char title[1024]; safef(title, sizeof title, "%s %dk", name, psl->qStart/1000); htmlFramesetStart(title); showSomeAlignment2(psl, qSeq, gftDnaX, psl->qStart, psl->qEnd, name, item, "", psl->qStart, psl->qEnd); } void doPutaFrag(struct trackDb *tdb, char *item) /* display the potential pseudo and coding track */ { struct sqlConnection *conn = hAllocConn(database); struct sqlResult *sr = NULL;