summaryrefslogtreecommitdiff
path: root/doc/lispref/numbers.texi
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2018-08-17 17:56:53 +0300
committerEli Zaretskii <eliz@gnu.org>2018-08-17 17:56:53 +0300
commit9189afc1a823703e1cef648538ac4b22182eb099 (patch)
tree50c75904c896bffd82e0913ae720def929723416 /doc/lispref/numbers.texi
parentcc5325b0bea13bd93478fcee0b035877b3a72290 (diff)
downloademacs-9189afc1a823703e1cef648538ac4b22182eb099.tar.gz
Improve documentation of bignums
* etc/NEWS: Enhance the announcement of bignums. * doc/lispref/numbers.texi (Integer Basics): Add a missing period. Reported by Basil L. Contovounesios <contovob@tcd.ie>.
Diffstat (limited to 'doc/lispref/numbers.texi')
-rw-r--r--doc/lispref/numbers.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/numbers.texi b/doc/lispref/numbers.texi
index bd633b77c35..37d2c316490 100644
--- a/doc/lispref/numbers.texi
+++ b/doc/lispref/numbers.texi
@@ -37,7 +37,7 @@ numbers have a fixed amount of precision.
Integers in Emacs Lisp can have arbitrary precision.
Under the hood, though, there are two kinds of integers: smaller
-ones, called @dfn{fixnums}, and larger ones, called @dfn{bignums}
+ones, called @dfn{fixnums}, and larger ones, called @dfn{bignums}.
Some functions in Emacs only accept fixnums. Also, while fixnums can
always be compared for equality with @code{eq}, bignums require the
use of @code{eql}.