From 08d96abe1003acb9c47e6d279cad2f069170441d Mon Sep 17 00:00:00 2001 From: Laura Prieto Saavedra Date: Fri, 11 Nov 2022 14:41:01 -0500 Subject: [PATCH] Fix small typos in intro.dox --- examples/step-66/doc/intro.dox | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/step-66/doc/intro.dox b/examples/step-66/doc/intro.dox index 920d560235..b8516abd8b 100644 --- a/examples/step-66/doc/intro.dox +++ b/examples/step-66/doc/intro.dox @@ -130,7 +130,7 @@ use of the member functions FEValuesBase::get_function_values() and FEValuesBase::get_function_gradients(). This is how step-15, for example, does things. The assemble_system() -function would then looks like: +function would then look like: @code template void GelfandProblem::assemble_system() @@ -185,7 +185,7 @@ void GelfandProblem::assemble_system() } cell_rhs(i) += (-grad_phi_i * newton_step_gradients[q] + - phi_i * newton_step_values[q]) * + phi_i * nonlinearity) * dx; } } -- 2.39.5