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/tdbQuery/tdbQuery.c src/hg/utils/tdbQuery/tdbQuery.c index 3f24eaadef8..d3e90f4b9a2 100644 --- src/hg/utils/tdbQuery/tdbQuery.c +++ src/hg/utils/tdbQuery/tdbQuery.c @@ -41,31 +41,31 @@ void usage() /* Explain usage and exit. */ { errAbort( "tdbQuery - Query the trackDb system using SQL syntax.\n" "Usage:\n" " tdbQuery sqlStatement\n" "Where the SQL statement is enclosed in quotations to avoid the shell interpreting it.\n" "Only a very restricted subset of a single SQL statement (select) is supported. Examples:\n" " tdbQuery \"select count(*) from hg18\"\n" "counts all of the tracks in hg18 and prints the results to stdout\n" " tdbQuery \"select count(*) from *\"\n" "counts all tracks in all databases.\n" " tdbQuery \"select track,shortLabel from hg18 where type like 'bigWig%%'\"\n" -"prints to stdout a a two field .ra file containing just the track and shortLabels of bigWig \n" +"prints to stdout a two field .ra file containing just the track and shortLabels of bigWig \n" "type tracks in the hg18 version of trackDb.\n" " tdbQuery \"select * from hg18 where track='knownGene' or track='ensGene'\"\n" "prints the hg18 knownGene and ensGene track's information to stdout.\n" " tdbQuery \"select *Label from mm9\"\n" "prints all fields that end in 'Label' from the mm9 trackDb.\n" "OPTIONS:\n" " -root=/path/to/trackDb/root/dir\n" "Sets the root directory of the trackDb.ra directory hierarchy to be given path. By default\n" "this is ~/kent/src/hg/makeDb/trackDb.\n" " -check\n" "Check that trackDb is internally consistent. Prints diagnostic output to stderr and aborts if \n" "there's problems.\n" " -strict\n" "Mimic -strict option on hgTrackDb. Suppresses tracks where corresponding table does not exist.\n" " -release=alpha|beta|public\n"