From 3e95d784284403821d5f134763f91896f38a1a71 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Mon, 13 Feb 2023 09:56:47 -0500 Subject: [PATCH] doc: replace FE_DGRT with correct name --- examples/step-61/doc/intro.dox | 4 ++-- examples/step-61/step-61.cc | 2 +- include/deal.II/fe/fe_dg_vector.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/step-61/doc/intro.dox b/examples/step-61/doc/intro.dox index 701912a960..328e7f32e4 100644 --- a/examples/step-61/doc/intro.dox +++ b/examples/step-61/doc/intro.dox @@ -222,8 +222,8 @@ in the discussion below. "broken" spaces. @note deal.II happens to have an implementation of this broken Raviart-Thomas - space: The FE_DGRT class. As a consequence, in this tutorial we will simply - always use the FE_DGRT class, even though in all of those places where + space: The FE_DGRaviartThomas class. As a consequence, in this tutorial we will simply + always use the FE_DGRaviartThomas class, even though in all of those places where we have to compute cell-local matrices and vectors, it makes no difference. diff --git a/examples/step-61/step-61.cc b/examples/step-61/step-61.cc index a13ae7f6f4..cdc222a750 100644 --- a/examples/step-61/step-61.cc +++ b/examples/step-61/step-61.cc @@ -360,7 +360,7 @@ namespace Step61 // DoFHandler class. // // We could create a DoFHandler object for the "broken" Raviart-Thomas space - // (using the FE_DGRT class), but we really don't want to here: At + // (using the FE_DGRaviartThomas class), but we really don't want to here: At // least in the current function, we have no need for any globally defined // degrees of freedom associated with this broken space, but really only // need to reference the shape functions of such a space on the current diff --git a/include/deal.II/fe/fe_dg_vector.h b/include/deal.II/fe/fe_dg_vector.h index 4a34ff3d1f..0d8f5d4fad 100644 --- a/include/deal.II/fe/fe_dg_vector.h +++ b/include/deal.II/fe/fe_dg_vector.h @@ -137,7 +137,7 @@ private: * space that is discontinuous between cells and on each cell has shape * functions that equal those of the Nedelec element. * - * The related class FE_DGRT is used in step-61. + * The related class FE_DGRaviartThomas is used in step-61. * @ingroup fe */ template @@ -198,7 +198,7 @@ public: * space that is discontinuous between cells and on each cell has shape * functions that equal those of the BDM element. * - * The related class FE_DGRT is used in step-61. + * The related class FE_DGRaviartThomas is used in step-61. * * @ingroup fe */ -- 2.39.5