From fa6a30198c0621447b99e1fc073692b73722ec7d Mon Sep 17 00:00:00 2001 From: Almar Date: Wed, 27 Mar 2013 21:54:49 +0100 Subject: [PATCH] Fix typo in docstring of disk(). --- skimage/morphology/selem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/morphology/selem.py b/skimage/morphology/selem.py index 2e17a4a9..e27c6efb 100644 --- a/skimage/morphology/selem.py +++ b/skimage/morphology/selem.py @@ -93,7 +93,7 @@ def disk(radius, dtype=np.uint8): """ Generates a flat, disk-shaped structuring element of a given radius. A pixel is within the neighborhood if the euclidean distance between - it and the origin is no greater than a radius. + it and the origin is no greater than radius. Parameters ----------