Open
Conversation
Fixed with: codespell --write-changes help/ codespell --write-changes help/ --interactive=2 ispell help/*.html
Contributor
|
LGTM! This should be merged after the merge conflict gets resolved. /cc @ok2cqr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes some small errors in the help files.
I didn't replace the lower case "qsl", "qso", "qth" with upper case because it would double the size of this diff for little gain.
I reverted an automatic fix by
codespellinhelp/sql_console.htmlwhere it would replace "releas" with "release" because that's the actual field name insrc/dData.lfmcodespellcould be run also on the source files making it to ignore some words like "releas" but there is still the risk of breaking the code. For example the following command lists all the word that would be changed if you run it add a--write-changesoption (and--interactive=2to let you choose when there is more than one choice):codespell --ignore-words-list=ans,dout,release,ro,ser,te --skip=./ctyfiles/*,./members/*,./zipcodes/* --summaryhowever there are probably more words to ignore and directories to skip.