; lisp/progmodes/java-ts-mode.el: Fix more typos.

This commit is contained in:
Stefan Kangas 2022-12-08 16:51:59 +01:00
parent 2659311e06
commit 9c21eae60c

View file

@ -22,7 +22,6 @@
;; You should have received a copy of the GNU General Public License ;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary: ;;; Commentary:
;; ;;
@ -126,7 +125,7 @@
"!=" "==" "*" "/" "%" "<" "<=" ">" ">=" "!=" "==" "*" "/" "%" "<" "<=" ">" ">="
"-=" "+=" "*=" "/=" "%=" "->" "^" "^=" "-=" "+=" "*=" "/=" "%=" "->" "^" "^="
"|=" "~" ">>" ">>>" "<<" "::" "?" "&=") "|=" "~" ">>" ">>>" "<<" "::" "?" "&=")
"C operators for tree-sitter font-locking.") "Java operators for tree-sitter font-locking.")
(defvar java-ts-mode--font-lock-settings (defvar java-ts-mode--font-lock-settings
(treesit-font-lock-rules (treesit-font-lock-rules
@ -243,7 +242,7 @@
:language 'java :language 'java
:feature 'delimiter :feature 'delimiter
'((["," ":" ";"]) @font-lock-delimiter-face)) '((["," ":" ";"]) @font-lock-delimiter-face))
"Tree-sitter font-lock settings.") "Tree-sitter font-lock settings for `java-ts-mode'.")
(defun java-ts-mode--imenu-1 (node) (defun java-ts-mode--imenu-1 (node)
"Helper for `java-ts-mode--imenu'. "Helper for `java-ts-mode--imenu'.