* The most common usage for this object is initializing vectors as in the
* following code:
*
- * <code> MGDofHandler<dim> dof_handler(triangulation);
- * dof_handler.distribute_dofs(fesystem);
+ * <code>
+ * DoFHandler<dim> dof_handler(triangulation);
+ * dof_handler.distribute_dofs(fe_system);
+ * dof_handler.distribute_mg_dofs(fe_system);
* DoFRenumbering::block_wise(dof_handler);
*
* BlockVector<double> solution(dof_handler.block_info().global());
/**
- * A class that gives access to the degrees of freedom stored in a DoFHandler,
- * MGSoDHandler, or hp::DoFHandler object. Accessors are used to, access the
- * data that pertains to edges, faces, and cells of a triangulation. The
- * concept is explained in more detail in connection to
- * @ref Iterators.
+ * A class that gives access to the degrees of freedom stored in a DoFHandler
+ * or hp::DoFHandler object. Accessors are used to access the data that
+ * pertains to edges, faces, and cells of a triangulation. The concept is
+ * explained in more detail in connection to @ref Iterators.
*
* This class follows mainly the route laid out by the accessor library
* declared in the triangulation library (TriaAccessor). It enables the user