diff --git a/fsl/data/gifti.py b/fsl/data/gifti.py
index 7dc0eca309468ff9692c902f09ebbd1b4b8d8985..d75c73a79a1f66d2fb8617848d48d4e11f7e9a36 100644
--- a/fsl/data/gifti.py
+++ b/fsl/data/gifti.py
@@ -314,6 +314,7 @@ def relatedFiles(fname, ftypes=None):
 
     This function assumes that the GIFTI files are named according to a
     standard convention - the following conventions are supported:
+
      - HCP-style, i.e.: ``<subject>.<hemi>.<type>.<space>.<ftype>.gii``
      - BIDS-style, i.e.:
        ``<source_prefix>_hemi-<hemi>[_space-<space>]*_<suffix>.<ftype>.gii``
diff --git a/fsl/data/image.py b/fsl/data/image.py
index a12f39b12eec26064096a23dcc9365726588e3d2..ce01645b4c544f263c0ea05cd2cd38be7fa0f604 100644
--- a/fsl/data/image.py
+++ b/fsl/data/image.py
@@ -1005,7 +1005,7 @@ class Image(Nifti):
 
         :arg image:      A string containing the name of an image file to load,
                          or a :mod:`numpy` array, or a :mod:`nibabel` image
-                         object, or an ``Image``object.
+                         object, or an ``Image`` object.
 
         :arg name:       A name for the image.
 
diff --git a/fsl/utils/fslsub.py b/fsl/utils/fslsub.py
index 30ffc0b72d901f774dd722649dc495f45d5668d8..3796110d6eb5806924fcaf5366eee9576c10a83d 100644
--- a/fsl/utils/fslsub.py
+++ b/fsl/utils/fslsub.py
@@ -63,7 +63,7 @@ class SubmitParams(object):
 
     Any command line script can be submitted by the parameters by calling the `SubmitParams` object:
 
-    .. codeblock:: python
+    .. code-block:: python
 
         submit = SubmitParams(minutes=1, logdir='log', wait_for=['108023', '108019'])
         submit('echo finished')
@@ -71,14 +71,14 @@ class SubmitParams(object):
     This will run "echo finished" with a maximum runtime of 1 minute after the jobs with IDs 108023 and 108019 are finished.
     It is the equivalent of
 
-    .. codeblock:: bash
+    .. code-block:: bash
 
         fsl_sub -T 1 -l log -j 108023,108019 "echo finished"
 
     For python scripts that submit themselves to the cluster, it might be useful to give the user some control
     over at least some of the submission parameters. This can be done using:
 
-    .. codeblock:: python
+    .. code-block:: python
 
         import argparse
         parser = argparse.ArgumentParser("my script doing awesome stuff")
diff --git a/fsl/wrappers/wrapperutils.py b/fsl/wrappers/wrapperutils.py
index 150ef0ae979d520cfd68404ba91238af6a66eb09..7a58c02317928c83dea9c9e7c899de0f666ff78d 100644
--- a/fsl/wrappers/wrapperutils.py
+++ b/fsl/wrappers/wrapperutils.py
@@ -606,6 +606,7 @@ class FileOrThing(object):
         :arg load:      Function which is called to load items for arguments
                         that were set to :data:`LOAD`. Must accept the
                         following arguments:
+
                          - the name of the argument
                          - path to the file to be loaded