summaryrefslogtreecommitdiff
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorkobarity <kobarity@gmail.com>2022-05-22 13:26:34 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-05-22 13:26:34 +0200
commit2b63fabcd3a42ce336400909ca0fb09ec23a88ba (patch)
tree5d96c68448ba3f5120237634f9b4930ab4e7a261 /lisp/progmodes/python.el
parent959d041677205a370b21bc89503fa1d7e5a9bd6b (diff)
Fix two typos in comments in python.el
* lisp/progmodes/python.el (python-font-lock-keywords-maximum-decoration): Fix typos in comments (bug#55557).
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 94297d4ea5b..c1368364a97 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -678,7 +678,7 @@ sign in chained assignment."
;; and variants thereof
;; the cases
;; (a) = 5
- ;; [a] = 5
+ ;; [a] = 5,
;; [*a] = 5, 6
;; are handled separately below
(,(python-font-lock-assignment-matcher
@@ -708,7 +708,7 @@ sign in chained assignment."
(1 font-lock-variable-name-face))
;; special cases
;; (a) = 5
- ;; [a] = 5
+ ;; [a] = 5,
;; [*a] = 5, 6
(,(python-font-lock-assignment-matcher
(python-rx (or line-start ?\; ?=) (* space)