From: Christian Bauer Date: Fri, 11 Jun 2004 21:32:00 +0000 (+0000) Subject: fixed typo in comment X-Git-Tag: release_1-3-0~68 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=b9f93aaeedcdcc014e1aa28d1edb0e920c527f66;ds=sidebyside fixed typo in comment --- 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()) {