From: Matthias Maier Date: Tue, 17 May 2022 02:21:36 +0000 (-0500) Subject: base/tensor.h: Fix a typo X-Git-Tag: v9.4.0-rc1~209^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F13746%2Fhead;p=dealii.git base/tensor.h: Fix a typo --- diff --git a/include/deal.II/base/tensor.h b/include/deal.II/base/tensor.h index 2dfae4d67c..fe43467458 100644 --- a/include/deal.II/base/tensor.h +++ b/include/deal.II/base/tensor.h @@ -505,7 +505,7 @@ public: static_assert(rank_ >= 1, "Tensors must have a rank greater than or equal to one."); static_assert(dim >= 0, - "Tensors must have a dimension greater than or equal to one."); + "Tensors must have a dimension greater than or equal to zero."); /** * Provide a way to get the dimension of an object without explicit * knowledge of it's data type. Implementation is this way instead of