]> git.eshelyaron.com Git - emacs.git/commitdiff
; Minor copy edits
authorDmitry Gutov <dmitry@gutov.dev>
Tue, 9 Apr 2024 19:40:14 +0000 (22:40 +0300)
committerEshel Yaron <me@eshelyaron.com>
Wed, 10 Apr 2024 20:30:32 +0000 (22:30 +0200)
(cherry picked from commit 73bd48de3cf45de02c0f1caf5bd5196f4d4b08f5)

lisp/progmodes/perl-mode.el
lisp/progmodes/python.el

index f6c4dbed1e2dfddd3947a59e511aba71339fffc8..68685fb662599ac8e846b25978e727a51979d508 100644 (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"
index 8279617b6e74c323e7738294f728e728080160d4..85279d3e84b780c7d13a6dcf4b3f8a6b6a4e1eef 100644 (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\" \"-\").