From: Christian Bauer Date: Fri, 11 Jun 2004 21:32:29 +0000 (+0000) Subject: synced to HEAD (fixed typo) X-Git-Tag: release_1-2-2~23 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=commitdiff_plain;h=a74c4ff60491739b929260eb78d700e434f9ca7a;p=ginac.git synced to HEAD (fixed typo) --- diff --git a/ginac/numeric.cpp b/ginac/numeric.cpp index fc6c692c..022993d0 100644 --- a/ginac/numeric.cpp +++ b/ginac/numeric.cpp @@ -1810,7 +1810,7 @@ const numeric mod(const numeric &a, const numeric &b) /** Modulus (in symmetric representation). * Equivalent to Maple's mods. * - * @return a mod b in the range [-iquo(abs(m)-1,2), iquo(abs(m),2)]. */ + * @return a mod b in the range [-iquo(abs(b)-1,2), iquo(abs(b),2)]. */ const numeric smod(const numeric &a, const numeric &b) { if (a.is_integer() && b.is_integer()) {