From 91f3e211668136659096ec9d2ec8c9bc1f2a9cbd Mon Sep 17 00:00:00 2001 From: Simon Sticko Date: Sun, 26 Feb 2023 19:06:38 +0100 Subject: [PATCH] Fix grammar in an error message. --- source/dofs/dof_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dofs/dof_handler.cc b/source/dofs/dof_handler.cc index 072f6ad07e..9acebdf600 100644 --- a/source/dofs/dof_handler.cc +++ b/source/dofs/dof_handler.cc @@ -2135,7 +2135,7 @@ DoFHandler::distribute_dofs( "in the constructor before you can distribute DoFs.")); Assert(this->tria->n_levels() > 0, ExcMessage("The Triangulation you are using is empty!")); - Assert(ff.size() > 0, ExcMessage("The hp::FECollection given is empty!")); + Assert(ff.size() > 0, ExcMessage("The given hp::FECollection is empty!")); // // register the new finite element collection -- 2.39.5