From 7edca01921fdd7dce41d4c27f2f1359eeb935314 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Thu, 11 Oct 2018 19:36:50 +1100 Subject: [PATCH] Minor documentation improvement [ci skip] --- src/PIL/ImageDraw.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PIL/ImageDraw.py b/src/PIL/ImageDraw.py index 6a70def3b..27205cfff 100644 --- a/src/PIL/ImageDraw.py +++ b/src/PIL/ImageDraw.py @@ -391,8 +391,8 @@ def floodfill(image, xy, value, border=None, thresh=0): pixel. :param thresh: Optional threshold value which specifies a maximum tolerable difference of a pixel value from the 'background' in - order for it to be replaced. Useful for filling regions of non- - homogeneous, but similar, colors. + order for it to be replaced. Useful for filling regions of + non-homogeneous, but similar, colors. """ # based on an implementation by Eric S. Raymond # amended by yo1995 @20180806