Skip to content

Commit f50e4ec

Browse files
committed
fix docs
1 parent e04c9fe commit f50e4ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

firedrake/interpolation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1301,9 +1301,9 @@ def __init__(
13011301
interpolator : VomOntoVomInterpolator
13021302
A :class:`VomOntoVomInterpolator` object.
13031303
mat_type : Literal["aij", "baij", "matfree"] | None, optional
1304-
The type of PETSc Mat to create. If 'matfree' or None, a
1304+
The type of PETSc Mat to create. If 'matfree', a
13051305
matfree PETSc Mat wrapping the SF is created. If 'aij' or 'baij',
1306-
a concrete PETSc Mat is created. By default None.
1306+
a concrete PETSc Mat is created.
13071307
13081308
Raises
13091309
------
@@ -1353,7 +1353,7 @@ def __init__(
13531353

13541354
if mat_type == "matfree":
13551355
# If matfree, we use the SF wrapped as a PETSc Mat
1356-
# to perform the permutation. This is the default.
1356+
# to perform the permutation.
13571357
self.handle = self._wrap_python_mat()
13581358
else:
13591359
# Otherwise we build the concrete permutation

0 commit comments

Comments
 (0)