From f83c7a95e3eb42ee9cd4e48af7b51f0219b8097e Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Mon, 14 Oct 2013 13:58:04 +0200 Subject: [PATCH] Tweak markup of docstring. --- skimage/morphology/binary.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/morphology/binary.py b/skimage/morphology/binary.py index d74874a6..0b98ed6c 100644 --- a/skimage/morphology/binary.py +++ b/skimage/morphology/binary.py @@ -26,7 +26,7 @@ def binary_erosion(image, selem, out=None): Returns ------- eroded : ndarray of bool or intp - The result of the morphological erosion with values in [0, 1]. + The result of the morphological erosion with values in ``[0, 1]``. """ selem = (selem != 0) @@ -70,7 +70,7 @@ def binary_dilation(image, selem, out=None): Returns ------- dilated : ndarray of bool or intp - The result of the morphological dilation with values in [0, 1]. + The result of the morphological dilation with values in ``[0, 1]``. """ selem = (selem != 0)