-
Notifications
You must be signed in to change notification settings - Fork 2k
Description
The recent wave of typo fixes has brought into focus the problem of typos in the documentation. I would propose that an automated spell checker be added to the Github workflow. Such a checker would not catch all typos, but would handle those where the entered word was not in the dictionary. It would not catch atomic typos - typos where the entered word is a dictionary word. Nor would it handle the case where completely the wrong word has been used. Implementing an automated checker will reduce the amount of time developers spend on correcting typos in the documentation.
I had a go a few months ago at implementing such a system on one of my own Github repos, but did not get very far. It is, however, easy to run aspell on a local system with a suitable dictionary, and add words to a custom dictionary as you go along. It should therefore be fairly straightforward for someone with suitable skills to integrate spell checking into a Github workflow.