summaryrefslogtreecommitdiff
path: root/doc/lispintro
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-12-09 18:44:35 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2019-12-09 18:45:18 -0800
commitd1a791f8edc1b8f2189b6f1b3be7b946fef1edbc (patch)
treefb415df3de5b00b9ce7616872ead40c983b55a12 /doc/lispintro
parent28578f87b52ead4d31479fdcfba028118dfa6987 (diff)
downloademacs-d1a791f8edc1b8f2189b6f1b3be7b946fef1edbc.tar.gz
Spelling fixes
Diffstat (limited to 'doc/lispintro')
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 710e64f4570..3d8e5128403 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -103,7 +103,7 @@
@c number suitable for the title page, and update-date to be the date,
@c in the preferred style for these. E.g., run the shell command:
@c texi2any -D 'edition-number 3.11' \
-@c -D 'titlepage-edition-number Revised Third Edtion' \
+@c -D 'titlepage-edition-number Revised Third Edition' \
@c -D 'update-date 31 March 2020'
@c This relates mainly to the published book sold by the FSF.
@@ -3832,7 +3832,7 @@ delimit them from the body of the @code{let}.
@findex if
@cindex Conditional with @code{if}
-Anoter special form is the conditional @code{if}. This form is used
+Another special form is the conditional @code{if}. This form is used
to instruct the computer to make decisions. You can write function
definitions without using @code{if}, but it is used often enough, and
is important enough, to be included here. It is used, for example, in