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/utils/jimgrep/jimgrep.c src/utils/jimgrep/jimgrep.c index e830a9f2ab5..0daf0a0df7e 100644 --- src/utils/jimgrep/jimgrep.c +++ src/utils/jimgrep/jimgrep.c @@ -1,149 +1,149 @@ /* Jim grep - crude approximation of grep. */ #include "common.h" #include _inline toUp(char c) { if (isalpha(c)) c |= 0x20; return c; } char *findInString(const char *string, const char *pattern) /* Return first occurrence of pattern in string. * (Ignores case) */ { char c1 = toUp(*pattern++); int patSize = strlen(pattern); char c; while ((c = *string++) != 0) { if (c1 == toUp(c)) { int i; for (i=0; i