diff --git a/fsl/data/mesh.py b/fsl/data/mesh.py
index d052ccb399df3afd1a7fad3c2ead762eac6e3663..713cd463d5aa57614f9230afa2414f4bf44559ec 100644
--- a/fsl/data/mesh.py
+++ b/fsl/data/mesh.py
@@ -38,7 +38,7 @@ log = logging.getLogger(__name__)
 class TriangleMesh(object):
     """The ``TriangleMesh`` class represents a 3D model. A mesh is defined by a
     collection of ``N`` vertices, and ``M`` triangles.  The triangles are
-    defined by ``(M, 3)) indices into the list of vertices.
+    defined by ``(M, 3)`` indices into the list of vertices.
 
 
     A ``TriangleMesh`` instance has the following attributes:
diff --git a/fsl/utils/transform.py b/fsl/utils/transform.py
index fb90b4fb13a648b0a8f7130533e60c1020b89b1a..21f9b726aa98ab4f71b524bd63609c53e24eee41 100644
--- a/fsl/utils/transform.py
+++ b/fsl/utils/transform.py
@@ -184,10 +184,11 @@ def decompose(xform, angles=True):
                  is returned.
 
     :returns: The following:
-                - A sequence of three scales
-                - A sequence of three translations
-                - A sequence of three rotations, in radians. Or, if
-                  ``angles is False``, a rotation matrix.
+
+               - A sequence of three scales
+               - A sequence of three translations
+               - A sequence of three rotations, in radians. Or, if
+                 ``angles is False``, a rotation matrix.
     """
 
     # The inline comments in the code below are taken verbatim from