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/makeDb/mdbUpdate/mdbPrint.c src/hg/makeDb/mdbUpdate/mdbPrint.c index 924226f2df5..77ad4764bde 100644 --- src/hg/makeDb/mdbUpdate/mdbPrint.c +++ src/hg/makeDb/mdbUpdate/mdbPrint.c @@ -49,31 +49,31 @@ "There are two basic views of the data: by objects and by variables. The default view " "is by object. Each object will print out in an RA style stanza (by default) or as " "a single line of output containing all var=val pairs. In 'byVar' view, each RA style " "stanza holds a var val pair and all objects belonging to that pair on separate lines. " "Linear 'byVar' view puts the entire var=val pair on one line. Alternatively, request " "only counting of objects, variables or values.\n" "HINT: Use '%%' in any obj, var or val as a wildcard for selection.\n\n" "Examples:\n" " mdbPrint hg19 -vars=\"grant=Snyder cell=GM12878 antibody=CTCF\"\n" " Return all objs that satify ALL of the constraints.\n" " mdbPrint mm9 -vars=\"grant=Snyder cell=GM12878 antibody=?\" -byVar\n" " Return each all vars for all objects with the constraint.\n" " mdbPrint hg18 -obj=wgEncodeUncFAIREseqPeaksPanislets -line\n" " Return a single formatted metadata line for one object.\n" " mdbPrint hg18 -count -var=cell -val=GM%%\n" -" Return the count of objects which have a cell begining with 'GM'.\n"); +" Return the count of objects which have a cell beginning with 'GM'.\n"); } static struct optionSpec optionSpecs[] = { {"table", OPTION_STRING}, // default "metaDb" {"ra", OPTION_BOOLEAN},// ra format {"line", OPTION_BOOLEAN},// linear format {"composite",OPTION_STRING}, // Special case of a common var // (replaces vars="composite=wgEncodeBroadHistone") {"count", OPTION_BOOLEAN},// returns only counts of objects, vars and vals {"counts", OPTION_BOOLEAN},// sames as count {"cv", OPTION_STRING},// specify CV file path {"all", OPTION_BOOLEAN},// query entire table {"byVar", OPTION_BOOLEAN},// With -all prints from var perspective {"specialHelp",OPTION_BOOLEAN},// Certain very specialized features are described {"obj", OPTION_STRING}, // objName or objId