From: Laura Prieto Saavedra Date: Fri, 11 Nov 2022 19:41:01 +0000 (-0500) Subject: Fix small typos in intro.dox X-Git-Tag: v9.5.0-rc1~861^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08d96abe1003acb9c47e6d279cad2f069170441d;p=dealii.git Fix small typos in intro.dox --- 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; } }