From 17aea0b2d1bf5230c39981ba36e1f7ced56cecbc Mon Sep 17 00:00:00 2001 From: Richard Kreckel Date: Mon, 25 Jul 2005 01:04:07 +0000 Subject: [PATCH] power::expand_add: Fix typo. --- ginac/power.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); -- 2.44.0