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/protein/lib/pbUtil.c src/hg/protein/lib/pbUtil.c index 5c34fa3abc8..8bfaf27ac04 100644 --- src/hg/protein/lib/pbUtil.c +++ src/hg/protein/lib/pbUtil.c @@ -1031,25 +1031,25 @@ struct sqlResult *sr; char **row; conn = sqlConnect(UNIPROT_DB_NAME); sqlSafef(query, sizeof(query), "select count(*) from gene, displayId, accToTaxon,taxon " "where gene.val='%s' and gene.acc=displayId.acc and accToTaxon.taxon=taxon.id " "and accToTaxon.acc=gene.acc order by taxon.id", queryGeneID); sr = sqlMustGetResult(conn, query); row = sqlNextRow(sr); if (row == NULL) { - errAbort("Error occured during mySQL query: %s\n", query); + errAbort("Error occurred during mySQL query: %s\n", query); } proteinCnt = atoi(row[0]); sqlFreeResult(&sr); sqlDisconnect(&conn); return(proteinCnt); }