From 71fedb066dc2322819c7763afc0caf6a9ca9637b Mon Sep 17 00:00:00 2001 From: Jean-Paul Pelteret Date: Mon, 13 May 2019 01:28:22 +0200 Subject: [PATCH] Tidy up some grammar used to describe SD math functions --- include/deal.II/differentiation/sd/symengine_math.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 -- 2.39.5