Update copyright date of manual, and a small fix
authorMark H Weaver <mhw@netris.org>
Tue, 1 Feb 2011 09:31:13 +0000 (04:31 -0500)
committerAndy Wingo <wingo@pobox.com>
Tue, 1 Feb 2011 20:07:39 +0000 (21:07 +0100)
* doc/ref/guile.texi: Update copyright date to 2011.

* doc/ref/r6rs.texi (rnrs base): Fix typo: `rem0' -> `div0'.

doc/ref/guile.texi
doc/ref/r6rs.texi

index 1e7a277..dfadd13 100644 (file)
@@ -12,8 +12,8 @@
 @copying
 This manual documents Guile version @value{VERSION}.
 
-Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2009, 2010 Free
-Software Foundation.
+Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2009,
+2010, 2011 Free Software Foundation.
 
 Permission is granted to copy, distribute and/or modify this document
 under the terms of the GNU Free Documentation License, Version 1.3 or
index d6d9d9f..ffd238d 100644 (file)
@@ -499,7 +499,7 @@ it returns @math{ceiling(@var{x}/@var{y})}.
 @deffnx {Scheme Procedure} div0-and-mod0 x y
 These procedures accept two real numbers @var{x} and @var{y}, where the
 divisor @var{y} must be non-zero.  @code{div0} returns the
-integer @var{q} and @code{rem0} returns the real number
+integer @var{q} and @code{mod0} returns the real number
 @var{r} such that @math{@var{x} = @var{q}*@var{y} + @var{r}} and
 @math{-abs(@var{y}/2) <= @var{r} < abs(@var{y}/2)}.  @code{div0-and-mod0}
 returns both @var{q} and @var{r}, and is more efficient than computing