Merge pull request #3404 from radarhere/imagedraw

Minor ImageDraw documentation improvement
This commit is contained in:
Hugo 2018-10-11 12:05:54 +03:00 committed by GitHub
commit 6a83a440d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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