diff options
| author | kobarity <kobarity@gmail.com> | 2022-05-22 13:26:34 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-22 13:26:34 +0200 |
| commit | 2b63fabcd3a42ce336400909ca0fb09ec23a88ba (patch) | |
| tree | 5d96c68448ba3f5120237634f9b4930ab4e7a261 /lisp/progmodes/python.el | |
| parent | 959d041677205a370b21bc89503fa1d7e5a9bd6b (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.el | 4 |
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) |
