From: Richard Kreckel Date: Mon, 25 Jul 2005 01:04:07 +0000 (+0000) Subject: power::expand_add: Fix typo. X-Git-Tag: release_1-4-0~159 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=17aea0b2d1bf5230c39981ba36e1f7ced56cecbc power::expand_add: Fix typo. --- diff --git a/ginac/power.cpp b/ginac/power.cpp index 815c5930..8a0156e4 100644 --- a/ginac/power.cpp +++ b/ginac/power.cpp @@ -704,7 +704,7 @@ ex power::expand_add(const add & a, int n, unsigned options) const const size_t m = a.nops(); exvector result; // The number of terms will be the number of combinatorial compositions, - // i.e. the number of unordered arrangement of m nonnegative integers + // i.e. the number of unordered arrangements of m nonnegative integers // which sum up to n. It is frequently written as C_n(m) and directly // related with binomial coefficients: result.reserve(binomial(numeric(n+m-1), numeric(m-1)).to_int());