diff options
| author | Eli Zaretskii | 2025-07-09 15:43:00 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2025-07-09 15:43:00 +0300 |
| commit | 115a4fd940beadef72208c0137eb90fc76cefc32 (patch) | |
| tree | 8704b689775c75620af8b4cf9635353ee64f7b63 | |
| parent | 8497cfeaeac832ff98730388567526a42b321d85 (diff) | |
| download | emacs-115a4fd940beadef72208c0137eb90fc76cefc32.tar.gz emacs-115a4fd940beadef72208c0137eb90fc76cefc32.zip | |
; * doc/lispref/parsing.texi (Using Parser): Fix wording.
| -rw-r--r-- | doc/lispref/parsing.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/parsing.texi b/doc/lispref/parsing.texi index 2f9d2bc423c..70626ea9bb4 100644 --- a/doc/lispref/parsing.texi +++ b/doc/lispref/parsing.texi | |||
| @@ -577,10 +577,10 @@ A lisp program can also choose to force a parser to reparse and get the | |||
| 577 | changed regions immediately with @code{treesit-parser-changed-regions}. | 577 | changed regions immediately with @code{treesit-parser-changed-regions}. |
| 578 | 578 | ||
| 579 | @defun treesit-parser-changed-regions parser | 579 | @defun treesit-parser-changed-regions parser |
| 580 | This function force @var{parser} to reparse, and return the affected | 580 | This function forces @var{parser} to reparse, and returns the affected |
| 581 | regions: a list of @w{@code{(@var{start} . @var{end})}}. If the parser | 581 | regions: a list of @w{@code{(@var{start} . @var{end})}}. If the parser |
| 582 | has nothing new to reparse, or the affected regions are empty, | 582 | has nothing new to reparse, or the affected regions are empty, this |
| 583 | @code{nil} is returned. | 583 | function returns @code{nil}. |
| 584 | @end defun | 584 | @end defun |
| 585 | 585 | ||
| 586 | 586 | ||