]> git.eshelyaron.com Git - emacs.git/commitdiff
; * doc/lispref/parsing.texi (Pattern Matching): Fix punctuation.
authorEli Zaretskii <eliz@gnu.org>
Sat, 18 Jan 2025 07:18:09 +0000 (09:18 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sat, 18 Jan 2025 22:03:20 +0000 (23:03 +0100)
(cherry picked from commit d6151e9da5459c316b2f2e0407ecbf4f20c9a66c)

doc/lispref/parsing.texi

index f69dbfece6a77c33ad83b6c48ed280bfc570f70a..22186d44400b967e8462531f9ce93013cf269d90 100644 (file)
@@ -1550,7 +1550,7 @@ There are some additional functions for queries:
 string format; and @code{treesit-pattern-expand} converts a pattern.
 
 @findex treesit-query-first-valid
-Tree-sitter grammars change overtime. To support multiple possible
+Tree-sitter grammars change overtime.  To support multiple possible
 versions of a grammar, a Lisp program can use
 @code{treesit-query-first-valid} to pick the right query to use.  For
 example, if a grammar has a @code{(defun)} node in one version, and
@@ -1567,7 +1567,7 @@ later renamed it to @code{(function_definition)}, a Lisp program can use
 to support both versions of the grammar.
 
 For more details, consider reading the tree-sitter project's
-documentation about pattern-matching. The documentation can be found at
+documentation about pattern-matching.  The documentation can be found at
 @uref{https://tree-sitter.github.io/tree-sitter/using-parsers#pattern-matching-with-queries}.
 
 @node User-defined Things