]> git.eshelyaron.com Git - emacs.git/commitdiff
; * doc/lispintro/emacs-lisp-intro.texi (car & cdr): Fix typo.
authorEli Zaretskii <eliz@gnu.org>
Sun, 25 Jun 2023 05:25:13 +0000 (08:25 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 25 Jun 2023 05:25:13 +0000 (08:25 +0300)
doc/lispintro/emacs-lisp-intro.texi

index 90eb92ca7ea06ac79a1f95f257992087d54b4281..fce7583fe91c8a5a9ce77fcf60e8965817e5a7ab 100644 (file)
@@ -6827,7 +6827,7 @@ their code.
 
 However, lists in Lisp are built using a lower-level structure known
 as ``cons cells'' (@pxref{List Implementation}), in which there is no
-such thing as ``first'' or ``rest,''and the @sc{car} and the @sc{cdr}
+such thing as ``first'' or ``rest'', and the @sc{car} and the @sc{cdr}
 are symmetrical.  Lisp does not try to hide the existence of cons
 cells, and programs do use them for things other than lists.  For this
 reason, the names are helpful for reminding programmers that