From: Randy Taylor Date: Tue, 6 Dec 2022 01:30:56 +0000 (-0500) Subject: ; Fix typo in js--treesit-imenu X-Git-Tag: emacs-29.0.90~1343 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=717f8477284;p=emacs.git ; Fix typo in js--treesit-imenu * lisp/progmodes/js.el (js--treesit-imenu): Fix a typo. (Bug#59849) --- diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el index 90ab7cc924b..45dfef372cd 100644 --- a/lisp/progmodes/js.el +++ b/lisp/progmodes/js.el @@ -3734,7 +3734,7 @@ definition*\"." (var-tree (treesit-induce-sparse-tree node "lexical_declaration" nil 1000))) `(("Class" . ,(js--treesit-imenu-1 class-tree)) - ("Varieable" . ,(js--treesit-imenu-1 var-tree)) + ("Variable" . ,(js--treesit-imenu-1 var-tree)) ("Function" . ,(js--treesit-imenu-1 func-tree))))) ;;; Main Function