From: Wolfgang Bangerth Date: Tue, 3 Apr 2018 12:43:31 +0000 (-0600) Subject: Fix argument names. X-Git-Tag: v9.0.0-rc1~242^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ee35fd694a493ee461fde10860994140b2d850c;p=dealii.git Fix argument names. --- 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.