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
@@ -25,45 +25,45 @@
         int i;
         for (i=0; i<patSize; ++i)
             {
             if (toUp(string[i]) != toUp(pattern[i]))
                 break;
             }
         if (i == patSize)
             return (char*)(string-1);
         }
     }
 return NULL;
 }
 
 char *findBefore(char *bufStart, char *pos, char c)
 /* Scan backwards from pos to bufStart looking for first
- * occurence of character.  Return position right after

+ * occurrence of character.  Return position right after

  * that.  */
 {
 for (;;)
     {
     if (--pos == bufStart)
         return bufStart;
     if (*pos == c)
         return pos+1;
     }
 }
 
 char *findAfter(char *pos, char *bufEnd, char c)
 /* Scan forwards from pos to bufEnd looking for 
- * last occurence of character. Return position 

+ * last occurrence of character. Return position 

  * just before that. */
 {
 for (;;)
     {
     if (++pos == bufEnd)
         return bufEnd;
     if (*pos == c)
         return pos;
     }
 }
 
 void fgrepOne(char *pattern, char *fileName, boolean ignoreCase, boolean singleFile)
 /* Gnarly, speed tweaked, unbuffered i/o grep. Why? Because it's
  * 4x faster, which matters on those huge GenBank files! */
 {