From 5ee35fd694a493ee461fde10860994140b2d850c Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 3 Apr 2018 06:43:31 -0600 Subject: [PATCH] Fix argument names. --- include/deal.II/base/array_view.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/base/array_view.h b/include/deal.II/base/array_view.h index 60f836de87..ea3581f9b1 100644 --- a/include/deal.II/base/array_view.h +++ b/include/deal.II/base/array_view.h @@ -573,7 +573,7 @@ make_array_view (ArrayView &array_view) * because they contain immutable elements. Consequently, the return type of * this function is a view to a set of @p const objects. * - * @param[in] vector The Tensor for which we want to have an array view + * @param[in] tensor The Tensor for which we want to have an array view * object. The array view corresponds to the entire object but the * order in which the entries are presented in the array is an implementation * detail and should not be relied upon. @@ -599,7 +599,7 @@ make_array_view (const Tensor &tensor) * Such objects contain elements that can be written to. Consequently, * the return type of this function is a view to a set of writable objects. * - * @param[in] vector The Tensor for which we want to have an array view + * @param[in] tensor The Tensor for which we want to have an array view * object. The array view corresponds to the entire object but the * order in which the entries are presented in the array is an implementation * detail and should not be relied upon. @@ -625,7 +625,7 @@ make_array_view (Tensor &tensor) * type because they contain immutable elements. Consequently, the return type * of this function is a view to a set of @p const objects. * - * @param[in] vector The SymmetricTensor for which we want to have an array + * @param[in] tensor The SymmetricTensor for which we want to have an array * view object. The array view corresponds to the entire object but * the order in which the entries are presented in the array is an * implementation detail and should not be relied upon. @@ -652,7 +652,7 @@ make_array_view (const SymmetricTensor &tensor) * Consequently, the return type of this function is a view to a set of writable * objects. * - * @param[in] vector The SymmetricTensor for which we want to have an array + * @param[in] tensor The SymmetricTensor for which we want to have an array * view object. The array view corresponds to the entire object but * the order in which the entries are presented in the array is an * implementation detail and should not be relied upon. -- 2.39.5