Fix example in Emacs Lisp Intro manual

* doc/lispintro/emacs-lisp-intro.texi (beginning-of-buffer opt
arg): Fix indentation in example.  Reported by Xiyue Deng
<manphiz@gmail.com>.  (Bug#67560)
This commit is contained in:
Eli Zaretskii 2023-12-01 10:47:27 +02:00
parent a6e9c26c8f
commit c7e459132a

View file

@ -6048,8 +6048,9 @@ like this:
(/ size 10)) (/ size 10))
(/ (/
(+ 10 (+ 10
(* (* size
size (prefix-numeric-value arg))) 10))) (prefix-numeric-value arg)))
10))
@end group @end group
@end smallexample @end smallexample