From accdf3b370e7caa2b514ae6b594708e97cbe6c1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sun, 13 Jan 2013 11:38:36 +0100 Subject: [PATCH] Fix typo in doc string --- skimage/draw/_draw.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/draw/_draw.pyx b/skimage/draw/_draw.pyx index 7c77b423..66b41d2c 100644 --- a/skimage/draw/_draw.pyx +++ b/skimage/draw/_draw.pyx @@ -267,8 +267,8 @@ def circle_perimeter(int cy, int cx, int radius, method='bresenham'): @cython.boundscheck(False) @cython.wraparound(False) def set_color(img, coords, color): - """Set pixel color in the image at the given coordiantes. Coordinates that - exceeed the shape of the image will be ignored. + """Set pixel color in the image at the given coordinates. Coordinates that + exceed the shape of the image will be ignored. Parameters ----------