From 717f8477284170dd59315a3c64cc7e492e9366e2 Mon Sep 17 00:00:00 2001 From: Randy Taylor Date: Mon, 5 Dec 2022 20:30:56 -0500 Subject: [PATCH] ; Fix typo in js--treesit-imenu * lisp/progmodes/js.el (js--treesit-imenu): Fix a typo. (Bug#59849) --- lisp/progmodes/js.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2