Skip to content

Commit

Permalink
fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrubeck committed Oct 23, 2023
1 parent 2331f98 commit a07f373
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions firedrake/mg/embedded.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ def work_vec(self, V):
def op(self, source, target, transfer_op):
"""Primal transfer (either prolongation or injection).
:arg source: The source :class:`Function`.
:arg target: The target :class:`Function`.
:arg source: The source :class:`.Function`.
:arg target: The target :class:`.Function`.
:arg transfer_op: The transfer operation for the DG space.
"""
Vs = source.function_space()
Expand Down Expand Up @@ -264,8 +264,8 @@ def inject(self, uf, uc):
def restrict(self, source, target):
"""Restrict a dual function.
:arg source: The source (fine grid) :class:`Cofunction`.
:arg target: The target (coarse grid) :class:`Cofunction`.
:arg source: The source (fine grid) :class:`.Cofunction`.
:arg target: The target (coarse grid) :class:`.Cofunction`.
"""
Vs_star = source.function_space()
Vt_star = target.function_space()
Expand Down

0 comments on commit a07f373

Please sign in to comment.