From a07f37306fa7816b868bd19bd9839e67eb2bf968 Mon Sep 17 00:00:00 2001 From: Pablo Brubeck Date: Mon, 23 Oct 2023 10:52:42 +0100 Subject: [PATCH] fix docstring --- firedrake/mg/embedded.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/firedrake/mg/embedded.py b/firedrake/mg/embedded.py index 56c8fde97f..ec448b7b8f 100644 --- a/firedrake/mg/embedded.py +++ b/firedrake/mg/embedded.py @@ -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() @@ -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()