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/common.c src/lib/common.c
index 7e0292f28a2..a06ee397ba2 100644
--- src/lib/common.c
+++ src/lib/common.c
@@ -3493,31 +3493,31 @@
 /*
  Friendly name for strstrNoCase
 */
 char *containsStringNoCase(char *haystack, char *needle)
 {
 return strstrNoCase(haystack, needle);
 }
 
 char *strstrNoCase(char *haystack, char *needle)
 /*
   A case-insensitive strstr function
 Will also robustly handle null strings
 param haystack - The string to be searched
 param needle - The string to look for in the haystack string
 
-return - The position of the first occurence of the desired substring
+return - The position of the first occurrence of the desired substring
 or -1 if it is not found
  */
 {
 char *haystackCopy = NULL;
 char *needleCopy = NULL;
 int index = 0;
 int haystackLen = 0;
 int needleLen = 0;
 char *p, *q;
 
 if (NULL == haystack || NULL == needle)
     {
     return NULL;
     }