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/meta.c src/lib/meta.c
index 16ba4a91773..ccca38d5221 100644
--- src/lib/meta.c
+++ src/lib/meta.c
@@ -392,21 +392,21 @@
 }
 
 static void rHashMetaList(struct hash *hash, struct meta *list)
 /* Add list, and any children of list to hash */
 {
 struct meta *meta;
 for (meta = list; meta != NULL; meta = meta->next)
     {
     hashAddUnique(hash, meta->name, meta);
     if (meta->children)
         rHashMetaList(hash, meta->children);
     }
 }
 
 struct hash *metaHash(struct meta *forest)
-/* Return hash of meta at all levels of heirarchy keyed by forest. */
+/* Return hash of meta at all levels of hierarchy keyed by forest. */
 {
 struct hash *hash = hashNew(0);
 rHashMetaList(hash, forest);
 return hash;
 }