From: Jean-Paul Pelteret Date: Sun, 12 May 2019 23:28:22 +0000 (+0200) Subject: Tidy up some grammar used to describe SD math functions X-Git-Tag: v9.1.0-rc1~36^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71fedb066dc2322819c7763afc0caf6a9ca9637b;p=dealii.git Tidy up some grammar used to describe SD math functions --- diff --git a/include/deal.II/differentiation/sd/symengine_math.h b/include/deal.II/differentiation/sd/symengine_math.h index a4c1738014..f8773e557b 100644 --- a/include/deal.II/differentiation/sd/symengine_math.h +++ b/include/deal.II/differentiation/sd/symengine_math.h @@ -50,7 +50,7 @@ namespace Differentiation //@{ /** - * Return a symbolic number that represents a @p base value to the power of + * Return a symbolic number that represents a @p base value raised to the power of * an @p exponent. * * Mimics the function std::pow(base,exponent) using the @@ -60,7 +60,7 @@ namespace Differentiation pow(const Expression &base, const Expression &exponent); /** - * Return a symbolic number that represents a @p base value to the power of + * Return a symbolic number that represents a @p base value raised to the power of * an @p exponent. * * Mimics the function std::pow(base,exponent) using the @@ -79,7 +79,7 @@ namespace Differentiation } /** - * Return a symbolic number that represents a @p base value to the power of + * Return a symbolic number that represents a @p base value raised to the power of * an @p exponent. * * Mimics the function std::pow(base,exponent) using the @@ -135,7 +135,7 @@ namespace Differentiation log(const Expression &x); /** - * Return a symbolic number that represents the logarithm of a value @p x with + * Return a symbolic number that represents the logarithm of a value @p x taken with * respect to a @p base number. * * Mimics the function std::log(x,base) using the standard @@ -145,7 +145,7 @@ namespace Differentiation log(const Expression &x, const Expression &base); /** - * Return a symbolic number that represents the logarithm of a value @p x with + * Return a symbolic number that represents the logarithm of a value @p x taken with * respect to a @p base number. * * Mimics the function std::log(x,base) using the standard @@ -164,7 +164,7 @@ namespace Differentiation } /** - * Return a symbolic number that represents the logarithm of a value @p x with + * Return a symbolic number that represents the logarithm of a value @p x taken with * respect to a @p base number. * * Mimics the function std::log(x,base) using the standard