From f3924da90b26b8bf4274463c7abd76e08366b2d4 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Mon, 4 Mar 2013 18:36:32 +0200 Subject: [PATCH] DOC: Fix typo in remove_small_objects docstring. --- skimage/morphology/misc.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/skimage/morphology/misc.py b/skimage/morphology/misc.py index 5f548503..6274df53 100644 --- a/skimage/morphology/misc.py +++ b/skimage/morphology/misc.py @@ -22,8 +22,6 @@ def remove_small_objects(ar, min_size=64, connectivity=1, in_place=False): Raises ------ ValueError - If the input array is of int type but contains negative values. - TypeError If the input array is of an invalid type, such as float or string. Returns