From 658a83d46c08e676de5904ef1f26172789d5fe3d Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Thu, 22 Jan 2015 11:18:38 +1100 Subject: [PATCH] Don't use backticks to refer to functions See the "See Also" section in the NumPy Docstring Conventions document: https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt --- skimage/morphology/grey.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/morphology/grey.py b/skimage/morphology/grey.py index 1a59b934..8ab162cf 100644 --- a/skimage/morphology/grey.py +++ b/skimage/morphology/grey.py @@ -100,7 +100,7 @@ def pad_for_eccentric_selems(func): See Also -------- - ``opening``, ``closing``. + opening, closing. """ @functools.wraps(func) def func_out(image, selem, out=None, *args, **kwargs):