From 3fcb61760482edf3073912818b160cd350978e06 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Thu, 21 Apr 2022 12:27:46 +0200 Subject: [PATCH] Fix typo in variable name --- include/deal.II/matrix_free/dof_info.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/matrix_free/dof_info.h b/include/deal.II/matrix_free/dof_info.h index 0f986441d3..f576f9d444 100644 --- a/include/deal.II/matrix_free/dof_info.h +++ b/include/deal.II/matrix_free/dof_info.h @@ -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. * @@ -193,8 +193,8 @@ namespace internal * `std::vector::erase()`. */ void - get_dof_indices_on_cell_batch(std::vector &locall_indices, - const unsigned int cell, + get_dof_indices_on_cell_batch(std::vector &local_indices, + const unsigned int cell_batch, const bool with_constraints = true) const; /** -- 2.39.5