From: Denis Davydov Date: Fri, 18 Aug 2017 13:56:07 +0000 (+0200) Subject: fix typos X-Git-Tag: v9.0.0-rc1~1198^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=203abb5f022aaec6bbb46dec9d45518ccb63f628;p=dealii.git fix typos --- diff --git a/include/deal.II/base/function.h b/include/deal.II/base/function.h index 2b618b8dd4..8602e357a7 100644 --- a/include/deal.II/base/function.h +++ b/include/deal.II/base/function.h @@ -352,7 +352,7 @@ namespace Functions /** - * Provide a function which always returns zero. Obviously, also the derivates + * Provide a function which always returns zero. Obviously, also the derivatives * of this function are zero. Also, it returns zero on all components in case * the function is not a scalar one, which can be obtained by passing the * constructor the appropriate number of components. @@ -411,7 +411,7 @@ namespace Functions * Provide a function which always returns the constant values handed to the * constructor. * - * Obviously, the derivates of this function are zero, which is why we derive + * Obviously, the derivatives of this function are zero, which is why we derive * this class from ZeroFunction: we then only have to overload the * value functions, not all the derivatives. In some way, it would be more * obvious to do the derivation in the opposite direction, i.e. let