From 78d624a787531850aaf914cc7269ffd93e6adc06 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Sun, 8 May 2022 17:57:32 +0200 Subject: [PATCH] Fix format of table --- include/deal.II/fe/fe_base.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/fe/fe_base.h b/include/deal.II/fe/fe_base.h index f817e16345..58e31f5f47 100644 --- a/include/deal.II/fe/fe_base.h +++ b/include/deal.II/fe/fe_base.h @@ -144,10 +144,10 @@ namespace internal * As an example, the data is shown for a quadratic wedge. Which consists of * 6 vertices, 9 lines, and 5 faces (two triangles and three quadrilaterals). * @code - * vertices lines faces cell - * dpo_excl 1 1 1 1 1 1 | 1 1 1 1 1 1 1 1 1 | 0 0 1 1 1 | 0 - * dpo_incl 1 1 1 1 1 1 | 3 3 3 3 3 3 3 3 3 | 6 6 9 9 9 | 18 - * obj_index 0 1 2 3 4 5 | 6 7 8 9 10 11 12 13 14 | 15 15 15 16 17 | 18 + * vertices lines faces cell + * dpo_excl 1 1 1 1 1 1 | 1 1 1 1 1 1 1 1 1 | 0 0 1 1 1 | 0 + * dpo_incl 1 1 1 1 1 1 | 3 3 3 3 3 3 3 3 3 | 6 6 9 9 9 | 18 + * obj_index 0 1 2 3 4 5 | 6 7 8 9 10 11 12 13 14 | 15 15 15 16 17 | 18 * @endcode * * Since the above table looks as follows for: -- 2.39.5