Skip to content

Commit

Permalink
improve Spelling rules by using word boundaries
Browse files Browse the repository at this point in the history
By using regex word boundary (\b) delimiters, the spelling rule
applies to individual words rather than a word that might contain the
regex filter. For example, "\b[cC]he\b" will match only "che" and "Che"
rather than a regex filter without word boundary delimiters, for
example, "[cC]he" that would match misspelled words that contain the
regex, such as "aache" or "chemitsry".
  • Loading branch information
Michael Troutman committed Nov 12, 2024
1 parent 5b07237 commit 663f050
Showing 1 changed file with 517 additions and 514 deletions.
Loading

0 comments on commit 663f050

Please sign in to comment.