From 34d116e8e728ce27661727f8c69a31bd772f1d2b Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Mon, 9 Jul 2018 01:16:44 +0200 Subject: [PATCH] Fix variable assignment --- include/deal.II/lac/schur_complement.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/lac/schur_complement.h b/include/deal.II/lac/schur_complement.h index 7ad43b3e91..140e6123a9 100644 --- a/include/deal.II/lac/schur_complement.h +++ b/include/deal.II/lac/schur_complement.h @@ -167,7 +167,7 @@ DEAL_II_NAMESPACE_OPEN * y = S_inv * rhs; * * // Compute x using resolved solution y - * postprocess_schur_solution (A_inv,B,y,f); + * x = postprocess_schur_solution (A_inv,B,y,f); * @endcode * * In the above example, the preconditioner for $ S $ was defined as the -- 2.39.5