Skip to content

Commit

Permalink
Fix small typos in intro.dox
Browse files Browse the repository at this point in the history
  • Loading branch information
lpsaavedra committed Nov 11, 2022
1 parent a6cc131 commit 08d96ab
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 08d96ab

Please sign in to comment.