From f11c9e2a3100deaa3269267e530fd1032d68282c Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 17 Dec 2024 18:17:00 -0700 Subject: [PATCH] Fix markup. --- include/deal.II/grid/grid_in.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/deal.II/grid/grid_in.h b/include/deal.II/grid/grid_in.h index 1a0fb9dc61..98c8a80ff3 100644 --- a/include/deal.II/grid/grid_in.h +++ b/include/deal.II/grid/grid_in.h @@ -780,11 +780,11 @@ public: * - Vector stores value for the given identifier in each cell. * To access the value, use cell_data[name_field][cell->active_cell_index()]. * - * For example, if the vtk mesh contains field data 'Density' defined at the - * cells, cell_data['Density'][0] would be the density defined at cell ID '0', - * which corresponds to index 0 of the vector. The length of the vector in - * cell_data['Density'] would equal the number of elements in the coarse - * mesh. + * For example, if the vtk mesh contains field data "Density" defined on + * cells, then `cell_data["Density"][0]` provides the density defined at cell + * ID '0', which corresponds to index 0 of the vector. The length of the + * vector in `cell_data["Density"]` equals the number of elements in the + * coarse mesh. */ const std::map> & get_cell_data() const; -- 2.39.5