From: Daniel Arndt Date: Mon, 14 Oct 2019 20:34:01 +0000 (-0400) Subject: Fix another typo in tensor.h X-Git-Tag: v9.2.0-rc1~983^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=711089810c402479ef73e5125669b47faafdef0b;p=dealii.git Fix another typo in tensor.h --- diff --git a/include/deal.II/base/tensor.h b/include/deal.II/base/tensor.h index e763038329..1a2c710c30 100644 --- a/include/deal.II/base/tensor.h +++ b/include/deal.II/base/tensor.h @@ -2030,8 +2030,8 @@ DEAL_II_CONSTEXPR inline DEAL_II_ALWAYS_INLINE * * If for example the first index (index_1==0) of a tensor * t1 shall be contracted with the third index - * (index_2==2) of a tensor t2, the invocation of - * this function is + * (index_2==2) of a tensor t2, this function should + * be invoked as * @code * contract<0, 2>(t1, t2); * @endcode @@ -2102,8 +2102,8 @@ DEAL_II_CONSTEXPR inline DEAL_II_ALWAYS_INLINE * If for example the first index (index_1==0) shall be * contracted with the third index (index_2==2), and the second * index (index_3==1) with the first index - * (index_4==0) the invocation of this function is this function - * is + * (index_4==0) of a tensor t2, this function should + * be invoked as * @code * double_contract<0, 2, 1, 0>(t1, t2); * @endcode