* example, you may have higher order elements and printing the values at the
* vertices only is not enough. For this reason, we not only provide writing
* the data on the vertices only, but the data is organizes as a tensor
- * product grid on each cell. The parameter <tt>n_subdivision</tt>, which is
+ * product grid on each cell. The parameter <tt>n_subdivisions</tt>, which is
* given for each patch separately, denotes how often the cell is to be
* divided for output; for example, <tt>n_subdivisions==1</tt> yields no
* subdivision of the cell, <tt>n_subdivisions==2</tt> will produce a grid of
*
* See the general documentation of the DataOutBase class for more
* information on its contents and purposes. In the case of two dimensions,
- * the next picture is an example of <tt>n_subdivision</tt> = 4 because the
+ * the next picture is an example of <tt>n_subdivisions</tt> = 4 because the
* number of (sub)cells within each patch is equal to
* <tt>2<sup>dim</sup></tt>.
*
* @endcode
*
* Note how we use the <code>std_cxx11::bind</code> function to convert
- * <code>mat_vec_on_subranged</code> from a function that takes 5 arguments
+ * <code>mat_vec_on_subranges</code> from a function that takes 5 arguments
* to one taking 2 by binding the remaining arguments (the modifiers
* <code>std_cxx11::ref</code> and <code>std_cxx11::cref</code> make sure
* that the enclosed variables are actually passed by reference and constant
* The component_wise() function allows not only to honor enumeration based on
* vector components, but also allows to group together vector components into
* "blocks" using a defaulted argument to the various
- * DoFRenumber::component_wise() functions (see
+ * DoFRenumbering::component_wise() functions (see
* @ref GlossComponent
* vs
* @ref GlossBlock
* On the other hand, if you really want to use block structure reported by
* the finite element itself (a case that is often the case if you have finite
* elements that have multiple vector components, e.g. the FE_RaviartThomas or
- * FE_Nedelec elements) then you can use the DoFRenumber::block_wise instead
- * of the DoFRenumbering::component_wise functions.
+ * FE_Nedelec elements) then you can use the DoFRenumbering::block_wise
+ * instead of the DoFRenumbering::component_wise functions.
*
*
* <h3>Cell-wise numbering</h3>