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/inc/meta.h src/inc/meta.h index e9be142e715..054b01e771b 100644 --- src/inc/meta.h +++ src/inc/meta.h @@ -80,18 +80,18 @@ char *metaLocalTagVal(struct meta *meta, char *tag); /* Return value of tag found in this node, not going up to parents. */ char *metaTagVal(struct meta *meta, char *tag); /* Return value of tag found in this node or if its not there in parents. * Returns NULL if tag not found. */ void metaAddTag(struct meta *meta, char *tag, char *val); /* Add tag/val to meta. */ void metaSortTags(struct meta *meta); /* Do canonical sort so that the first tag stays first but the * rest are alphabetical. */ struct hash *metaHash(struct meta *forest); -/* Return hash of meta at all levels of heirarchy keyed by meta value. */ +/* Return hash of meta at all levels of hierarchy keyed by meta value. */ #endif /* META_H */