From bcd538d759b060e79d2a780948b35d963aa2f933 Mon Sep 17 00:00:00 2001 From: Josh Hope-Collins Date: Fri, 12 Dec 2025 11:09:50 +0000 Subject: [PATCH] fs.broken_space fix docstring formatting --- firedrake/functionspaceimpl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()),