; Minor copy edits

This commit is contained in:
Dmitry Gutov 2024-04-09 22:40:14 +03:00
parent ccced8c3e4
commit 73bd48de3c
2 changed files with 2 additions and 2 deletions

View file

@ -656,7 +656,7 @@ create a new comment."
;;; Flymake support
(defcustom perl-flymake-command '("perl" "-w" "-c")
"External tool used to check Perl source code.
This is a non empty list of strings, the checker tool possibly
This is a non-empty list of strings: the checker tool possibly
followed by required arguments. Once launched it will receive
the Perl source to be checked as its standard input."
:version "26.1"

View file

@ -6610,7 +6610,7 @@ returned as is."
(defcustom python-flymake-command '("pyflakes")
"The external tool that will be used to perform the syntax check.
This is a non empty list of strings, the checker tool possibly followed by
This is a non-empty list of strings: the checker tool possibly followed by
required arguments. Once launched it will receive the Python source to be
checked as its standard input.
To use `flake8' you would set this to (\"flake8\" \"-\").