]> www.ginac.de Git - ginac.git/blobdiff - ginac/normal.cpp
Fix a comment.
[ginac.git] / ginac / normal.cpp
index d7570fd5aa435c0bc61a3c8181bdf050fe3e3772..81841e0f7f847de7d8e706d3a74deb1744ac3852 100644 (file)
@@ -297,7 +297,7 @@ static ex multiply_lcm(const ex &e, const numeric &lcm)
                return dynallocate<add>(v);
        } else if (is_exactly_a<power>(e)) {
                if (!is_a<symbol>(e.op(0))) {
-                       // (b^e)*lcm -> (b*lcm^(1/e))^e if lcm^(1/e) â\88\88 â\84\9d (i.e. not a float)
+                       // (b^e)*lcm -> (b*lcm^(1/e))^e if lcm^(1/e) â\88\88 â\84\9a (i.e. not a float)
                        // but not for symbolic b, as evaluation would undo this again
                        numeric root_of_lcm = lcm.power(ex_to<numeric>(e.op(1)).inverse());
                        if (root_of_lcm.is_rational())