Skip to content

Commit dcd6327

Browse files
committed
fix typo
1 parent c8d9ef2 commit dcd6327

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/models/static-problems.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ First, we solve the same problem as in a previous example.
10181018
Nh rho;
10191019
10201020
// Problem
1021-
problem Probem1 (u, v, solver=CG, eps=1.0e-6)
1021+
problem Problem1 (u, v, solver=CG, eps=1.0e-6)
10221022
= int2d(Th, qforder=5)(
10231023
u*v*1.0e-10
10241024
+ dx(u)*dx(v)
@@ -1054,7 +1054,7 @@ Of course, we can use a variational form to compute :math:`\eta_{T}^{2}`, with t
10541054
// Mesh adaptation loop
10551055
for (int i = 0; i < 4; i++){
10561056
// Solve
1057-
Probem1;
1057+
Problem1;
10581058
cout << u[].min << " " << u[].max << endl;
10591059
plot(u, wait=true);
10601060

0 commit comments

Comments
 (0)