diff options
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r-- | lisp/progmodes/python.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 641b4ccff23..694b897cc00 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -1192,7 +1192,7 @@ fontified." "Check whether NODE is a variable. NODE's type should be \"identifier\"." ;; An identifier can be a function/class name, a property, or a - ;; variables. This funtion filters out function/class names and + ;; variables. This function filters out function/class names and ;; properties. (pcase (treesit-node-type (treesit-node-parent node)) ((or "function_definition" "class_definition") nil) |