From: Daniel Arndt Date: Fri, 25 May 2018 15:37:48 +0000 (+0200) Subject: Fix typo X-Git-Tag: v9.1.0-rc1~1096^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6671%2Fhead;p=dealii.git Fix typo --- diff --git a/include/deal.II/base/bounding_box.h b/include/deal.II/base/bounding_box.h index ec1e66674c..77d36eae75 100644 --- a/include/deal.II/base/bounding_box.h +++ b/include/deal.II/base/bounding_box.h @@ -170,7 +170,7 @@ inline BoundingBox::BoundingBox( // We check the Bounding Box is not degenerate for (unsigned int i = 0; i < spacedim; ++i) Assert(boundary_points.first[i] <= boundary_points.second[i], - ExcMessage("Bounding Box can't be created: the point's " + ExcMessage("Bounding Box can't be created: the points' " "order should be bottom left, top right!")); this->boundary_points = boundary_points;