]> code.delx.au - gnu-emacs/commitdiff
(Fround): Fix a typo.
authorEli Zaretskii <eliz@gnu.org>
Fri, 8 Feb 2002 13:03:27 +0000 (13:03 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 8 Feb 2002 13:03:27 +0000 (13:03 +0000)
src/floatfns.c

index 708dfab547a794187a4b248b1b4ab9dae829fafc..fabbffb44087a6d317984b2db1aa8b03a6910f8b 100644 (file)
@@ -864,7 +864,7 @@ With optional DIVISOR, return the nearest integer to ARG/DIVISOR.
 Rounding a value equidistant between two integers may choose the
 integer closer to zero, or it may prefer an even integer, depending on
 your machine.  For example, \(round 2.5\) can return 3 on some
-systems, but 3 on others.  */)
+systems, but 2 on others.  */)
      (arg, divisor)
      Lisp_Object arg, divisor;
 {