Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix small typos in the intro.dox of Step-66 #14414

Merged
merged 1 commit into from
Nov 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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