scripts: word choice/clarity

This commit is contained in:
Ryan Pavlik 2022-05-17 17:04:59 -05:00
parent 45263ea8de
commit ce092d5e8e
2 changed files with 3 additions and 3 deletions

View file

@ -8,13 +8,13 @@
# -i 3 # -i 3
# as arguments to interactively fix detected issues, # as arguments to interactively fix detected issues,
# including ambiguous ones, # including ambiguous ones,
# rather than just directly fixing the ones it can. # rather than only directly fixing the ones it can.
# Success error code if no mistakes or only auto-fixable mistakes found. # Success error code if no mistakes or only auto-fixable mistakes found.
# Failure error code if one or more ambiguous fixes found (requiring interactive fixing). # Failure error code if one or more ambiguous fixes found (requiring interactive fixing).
# See https://github.com/codespell-project/codespell # See https://github.com/codespell-project/codespell
# or just run pip3 install codespell # or run pip3 install codespell
set -e set -e

View file

@ -31,7 +31,7 @@ PATCH_NAME=fixes.diff
else else
# At least one non-auto-fixable error. e.g. "a o t h e r" (remove spaces) # At least one non-auto-fixable error. e.g. "a o t h e r" (remove spaces)
echo echo
echo "Codespell found at least one issue it couldn't auto-fix, see above." echo "Codespell found at least one issue it couldn't auto-fix, see preceding."
echo "If the issue isn't actually a problem, edit IGNORE_WORDS_LIST in $(dirname $0)/codespell-project.sh" echo "If the issue isn't actually a problem, edit IGNORE_WORDS_LIST in $(dirname $0)/codespell-project.sh"
echo "Otherwise, you may run \`$(dirname $0)/codespell-project.sh -i 3\` locally to interactively fix." echo "Otherwise, you may run \`$(dirname $0)/codespell-project.sh -i 3\` locally to interactively fix."
echo echo