Skip to content

Commit

Permalink
Merge pull request #14414 from lpsaavedra/fix_small_typo
Browse files Browse the repository at this point in the history
Fix small typos in the intro.dox of Step-66
  • Loading branch information
peterrum committed Nov 12, 2022
2 parents a6cc131 + 08d96ab commit 6fe116b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/step-66/doc/intro.dox
Original file line number Diff line number Diff line change
Expand Up @@ -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 <code>assemble_system()</code>
function would then looks like:
function would then look like:
@code
template <int dim>
void GelfandProblem<dim>::assemble_system()
Expand Down Expand Up @@ -185,7 +185,7 @@ void GelfandProblem<dim>::assemble_system()
}

cell_rhs(i) += (-grad_phi_i * newton_step_gradients[q] +
phi_i * newton_step_values[q]) *
phi_i * nonlinearity) *
dx;
}
}
Expand Down

0 comments on commit 6fe116b

Please sign in to comment.