diff --git a/firedrake/functionspaceimpl.py b/firedrake/functionspaceimpl.py index 926824345f..899e9f67f5 100644 --- a/firedrake/functionspaceimpl.py +++ b/firedrake/functionspaceimpl.py @@ -404,13 +404,13 @@ def make_function_space(cls, mesh, element, name=None): return new def broken_space(self): - """Return a :class:`.WithGeometryBase` with a :class:`finat.ufl.BrokenElement` + """Return a :class:`.WithGeometryBase` with a :class:`finat.ufl.brokenelement.BrokenElement` constructed from this function space's FiniteElement. Returns ------- WithGeometryBase : - The new function space with a :class:`~finat.ufl.BrokenElement`. + The new function space with a :class:`~finat.ufl.brokenelement.BrokenElement`. """ return type(self).make_function_space( self.mesh(), finat.ufl.BrokenElement(self.ufl_element()),