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/gemfont.h src/lib/gemfont.h index ad67a044104..7aaf0acc9ba 100644 --- src/lib/gemfont.h +++ src/lib/gemfont.h @@ -3,31 +3,31 @@ * for personal, academic, and non-profit purposes. Commercial use * * permitted only by explicit agreement with Jim Kent (jim_kent@pacbell.net) * *****************************************************************************/ #ifndef GEMFONT_H #define GEMFONT_H /* This file supports GEM style fonts. They live on disk in three parts. 1st there's the header structure below, then a list of 'x' offsets into the data - one 16-bit word for each offset, and 1 offset for each letter in the font plus an extra offset at the end. This is followed by the data which is a single bitmap. */ struct font_hdr { -WORD id; /* some random number, doesnt matter */ +WORD id; /* some random number, doesn't matter */ WORD size; /* Size in points. Somehow related to pixel height. */ char facename[32]; /* Give it a name, don't really matter. */ WORD ADE_lo; /* Lowest ascii character in font */ WORD ADE_hi; /* Highest ascii character in font */ WORD top_dist; WORD asc_dist; /* Ascender to baseline?? */ WORD hlf_dist; WORD des_dist; /* des for descender. */ WORD bot_dist; WORD wchr_wdt; /* Widest character width. */ WORD wcel_wdt; /* Widest 'cell' width (includes distance to next character) */ WORD lft_ofst; WORD rgt_ofst; WORD thckning; WORD undrline;