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/lib/options.c src/lib/options.c index f926f53c1dd..f00d291dd61 100644 --- src/lib/options.c +++ src/lib/options.c @@ -359,33 +359,33 @@ int optionInt(char *name, int defaultVal) /* Return integer value of named option, or default value * if not set. */ { char *s = optGet(name); char *valEnd; long lval; if (s == NULL) return defaultVal; if (sameString(s,"on")) return defaultVal; lval = strtol(s, &valEnd, 10); // use strtol since strtoi does not exist if ((*s == '\0') || (*valEnd != '\0')) errAbort("value of -%s is not a valid integer: \"%s\"", name, s); if (lval > INT_MAX) - errAbort("value of -%s is is too large: %ld, integer maximum is %d", name, lval, INT_MAX); + errAbort("value of -%s is too large: %ld, integer maximum is %d", name, lval, INT_MAX); if (lval < INT_MIN) - errAbort("value of -%s is is too small: %ld, integer minimum is %d", name, lval, INT_MIN); + errAbort("value of -%s is too small: %ld, integer minimum is %d", name, lval, INT_MIN); return lval; } long long optionLongLong(char *name, long long defaultVal) /* Return long long value of named option, or default value * if not set. */ { char *s = optGet(name); char *valEnd; long long val; if (s == NULL) return defaultVal; if (sameString(s,"on")) return defaultVal; val = strtoll(s, &valEnd, 10);