From 6165dfdb4fad7c8754ba0c0d86da9b0efbedfcc4 Mon Sep 17 00:00:00 2001 From: Menno Fraters Date: Thu, 12 Sep 2019 07:12:38 -0700 Subject: [PATCH] Apply suggestions from code review Apply documentation suggestions from Timo Heister for the get_svd_u and get_svd_vt functions. Co-Authored-By: Timo Heister --- include/deal.II/lac/lapack_full_matrix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/lac/lapack_full_matrix.h b/include/deal.II/lac/lapack_full_matrix.h index 4bc395cabc..a539f43ec7 100644 --- a/include/deal.II/lac/lapack_full_matrix.h +++ b/include/deal.II/lac/lapack_full_matrix.h @@ -873,14 +873,14 @@ public: singular_value(const size_type i) const; /** - * Retrieves #svd_u matrix after compute_svd() or compute_inverse_svd() was + * Retrieve the matrix #svd_u after compute_svd() or compute_inverse_svd() was * called. */ inline const LAPACKFullMatrix & get_svd_u() const; /** - * Retrieves #svd_vt matrix after compute_svd() or compute_inverse_svd() was + * Retrieve the matrix #svd_vt after compute_svd() or compute_inverse_svd() was * called. */ inline const LAPACKFullMatrix& -- 2.39.5