]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/treesit.el (local-parser-overlay): Fix wording of commentary.
authorEli Zaretskii <eliz@gnu.org>
Tue, 11 Mar 2025 11:50:56 +0000 (13:50 +0200)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:59:37 +0000 (19:59 +0100)
(cherry picked from commit 5e9675367ad0697f615b5168441bf6490977168c)

lisp/treesit.el

index 5e21ab82ddb5b6478e8eb2b922b134b703980818..2430a9c5e194d7402c591f4557316eed9c772ec4 100644 (file)
@@ -630,17 +630,17 @@ If none are valid, return nil."
 ;;; Range API supplement
 
 ;; (ref:local-parser-overlay) Regarding local parser overlays, we store
-;; the local parser in a overlay spanning across the code block that the
-;; parser is responsible of. The `treesit-parser' property stores the
-;; parser, the `treesit-host-parser' property stores the host parser,
+;; the local parser in an overlay spanning across the code block for
+;; which the parser is responsible. The `treesit-parser' property stores
+;; the parser, the `treesit-host-parser' property stores the host parser,
 ;; the `treesit-parser-ov-timestamp' property stores the buffer's tick
 ;; counter (`buffer-modified-tick') when we last updated this overlay,
-;; it's used for garbage-collecting stale ranges and local parsers.
+;; which is used for garbage-collecting stale ranges and local parsers.
 ;;
 ;; Besides local parsers, we also create overlays for non-local parsers,
-;; just to mark the start and end of each range it parses, so that other
+;; just to mark the start and end of each range they parse, so that other
 ;; functions can make use of this information.  To differentiate the
-;; overlay for local and non-local parsers, local parsers' overlay has
+;; overlay for local and non-local parsers, local parsers' overlays have
 ;; the `treesit-parser-local-p' property set to non-nil.
 
 (defvar-local treesit-range-settings nil