From: Martin Kronbichler Date: Thu, 21 Apr 2022 10:27:46 +0000 (+0200) Subject: Fix typo in variable name X-Git-Tag: v9.4.0-rc1~314^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3fcb61760482edf3073912818b160cd350978e06;p=dealii.git Fix typo in variable name --- 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; /**