Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DoFTools fix doc typo #14038

Merged
merged 1 commit into from Jun 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 3 additions & 4 deletions include/deal.II/dofs/dof_tools.h
Original file line number Diff line number Diff line change
Expand Up @@ -1626,8 +1626,7 @@ namespace DoFTools
* DoFHandler objects built on parallel::distributed::Triangulation this set
* is the union of DoFHandler::locally_owned_dofs() and the DoF indices on
* all ghost cells. In essence, it is the DoF indices on all cells that are
* not artificial (see
* @ref GlossArtificialCell "the glossary").
* not artificial (see @ref GlossArtificialCell "the glossary").
*
* @deprecated Use the previous function instead.
*/
Expand All @@ -1638,12 +1637,12 @@ namespace DoFTools

/**
* Extract the set of locally owned DoF indices for each component within the
* mask that are owned by the current processor. For components disabled by
* mask that are owned by the current processor. For components disabled by
* the mask, an empty IndexSet is returned. For a scalar DoFHandler built on a
* sequential triangulation, the return vector contains a single complete
* IndexSet with all DoF indices. If the mask contains all components (which
* also corresponds to the default value), then the union of the returned
* index sets equlas what DoFHandler::locally_owned_dofs() returns.
* index sets equals what DoFHandler::locally_owned_dofs() returns.
*/
template <int dim, int spacedim>
std::vector<IndexSet>
Expand Down