1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

Fix cl-most-positive-float doc typo

* doc/misc/cl.texi (Implementation Parameters):
Fix typo in documentation of cl-most-positive-float.
This commit is contained in:
Paul Eggert 2020-04-17 09:38:04 -07:00
parent c36c5a3ded
commit 6b297519b5

View File

@ -3128,7 +3128,7 @@ floating-point number, namely the IEEE binary64 floating-point format.
@defvar cl-most-positive-float
This constant equals the largest finite value a Lisp float can hold.
For IEEE binary64 format, this equals @code{(- (expt 2 1024) (- 2
For IEEE binary64 format, this equals @code{(- (expt 2 1024) (expt 2
971))}, which equals @code{1.7976931348623157e+308}.
@end defvar