diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-10-19 02:36:06 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-10-19 02:39:00 +0200 |
commit | 98eb6d783a482cd7ebca7ec656b0775b82c68e57 (patch) | |
tree | 72172deba593ade466ee0fd5c10e5a2e73c99125 /doc/lispintro/emacs-lisp-intro.texi | |
parent | f5b8f626e3d7233a935e67ffc5ffee0de9069ae5 (diff) | |
download | emacs-98eb6d783a482cd7ebca7ec656b0775b82c68e57.tar.gz |
Fix a typo in emacs-lisp-intro.texi
* doc/lispintro/emacs-lisp-intro.texi (Lisp Atoms): Fix typo.
Reported by Mor Zahavi <morzahavi@me.com>. (Bug#51271)
Diffstat (limited to 'doc/lispintro/emacs-lisp-intro.texi')
-rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 6ecd552ebb0..3897e5a0627 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -1177,7 +1177,7 @@ are different from the meaning the letters make as a word. For example, the word for the South American sloth, the @samp{ai}, is completely different from the two words, @samp{a}, and @samp{i}. -There are many kinds of atom in nature but only a few in Lisp: for +There are many kinds of atoms in nature but only a few in Lisp: for example, @dfn{numbers}, such as 37, 511, or 1729, and @dfn{symbols}, such as @samp{+}, @samp{foo}, or @samp{forward-line}. The words we have listed in the examples above are all symbols. In everyday Lisp |