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/hgSession/hgSession.c src/hg/hgSession/hgSession.c
index e3be1585167..9d03630d62b 100644
--- src/hg/hgSession/hgSession.c
+++ src/hg/hgSession/hgSession.c
@@ -582,31 +582,31 @@
cgiMakeButton(hgsDoNewSession, "submit");
printf("\n");
printf("
|
\n");
}
printf("| Save current settings to a local file: |
\n");
printf("| | File: | \n");
cgiMakeOnKeypressTextVar(hgsSaveLocalFileName,
cartUsualString(cart, hgsSaveLocalFileName, ""),
20, jsPressOnEnter(hgsDoSaveLocal));
printf(" ");
printf("File type returned: ");
char *compressType = cartUsualString(cart, hgsSaveLocalFileCompress, textOutCompressNone);
cgiMakeRadioButton(hgsSaveLocalFileCompress, textOutCompressNone,
differentWord(textOutCompressGzip, compressType));
-printf(" plain text  ");
+printf(" plain text ");
cgiMakeRadioButton(hgsSaveLocalFileCompress, textOutCompressGzip,
sameWord(textOutCompressGzip, compressType));
printf(" gzip compressed (ignored if output file is blank)");
printf(" | ");
printf(" ");
cgiMakeButton(hgsDoSaveLocal, "Submit");
printf(" |
\n");
printf(" | (leave file blank to get output in "
"browser window) |
\n");
printf(" |
\n");
printf("| Save Custom Tracks: |
\n");
printf("| | ");
printf("Back up custom tracks to archive .tar.gz | ");
printf("");
|