1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

; More stylistic docfixes in emacs-lisp/*.el found by checkdoc

This commit is contained in:
Stefan Kangas 2021-09-18 13:12:41 +02:00
parent 11d6d6c3ea
commit dd1220b969
20 changed files with 37 additions and 37 deletions

View file

@ -668,7 +668,7 @@ sub-iterator function returns via `iter-end-of-sequence'."
(iter-close ,valsym)))))
(defmacro iter-defun (name arglist &rest body)
"Creates a generator NAME.
"Create a generator NAME.
When called as a function, NAME returns an iterator value that
encapsulates the state of a computation that produces a sequence
of values. Callers can retrieve each value using `iter-next'."