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/twoBit.h src/inc/twoBit.h index 1ba50f6310b..ec2c2b259da 100644 --- src/inc/twoBit.h +++ src/inc/twoBit.h @@ -35,31 +35,31 @@ struct twoBitFile *next; char *fileName; /* Name of this file, for error reporting. */ void *f; /* Open file. */ boolean isSwapped; /* Is byte-swapping needed. */ bits32 version; /* Version of .2bit file */ bits32 seqCount; /* Number of sequences. */ bits32 reserved; /* Reserved, always zero for now. */ struct twoBitIndex *indexList; /* List of sequence. */ struct hash *hash; /* Hash of sequences. */ struct bptFile *bpt; /* Alternative index. */ struct twoBit *seqCache; /* Cache information about last sequence accessed, including * nBlock and mask block. This doesn't include the data. * This speeds fragment reads. */ - bits64 dataOffsetCache; /* file offset of data for seqCache seqeunce */ + bits64 dataOffsetCache; /* file offset of data for seqCache sequence */ /* the routines we use to access the twoBit. * These may be UDC routines, or stdio */ void (*ourSeek)(void *file, bits64 offset); void (*ourSeekCur)(void *file, bits64 offset); bits64 (*ourTell)(void *file); bits32 (*ourReadBits32)(void *f, boolean isSwapped); bits64 (*ourReadBits64)(void *f, boolean isSwapped); void (*ourClose)(void *pFile); boolean (*ourFastReadString)(void *f, char buf[256]); void (*ourMustRead)(void *file, void *buf, size_t size); }; struct twoBitSpec