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

Fix typo in variable name #13629

Merged
merged 1 commit into from
Apr 21, 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
8 changes: 4 additions & 4 deletions include/deal.II/matrix_free/dof_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ namespace internal
const unsigned int fe_degree) const;

/**
* Populate the vector @p locall_indices with locally owned degrees of freedom
* stored on the cell block @p cell.
* Populate the vector @p local_indices with locally owned degrees of freedom
* stored on the cell batch @p cell_batch.
* If @p with_constraints is `true`, then the returned vector will contain indices
* required to resolve constraints.
*
Expand All @@ -193,8 +193,8 @@ namespace internal
* `std::vector::erase()`.
*/
void
get_dof_indices_on_cell_batch(std::vector<unsigned int> &locall_indices,
const unsigned int cell,
get_dof_indices_on_cell_batch(std::vector<unsigned int> &local_indices,
const unsigned int cell_batch,
const bool with_constraints = true) const;

/**
Expand Down