diff --git a/skimage/draw/_draw.pyx b/skimage/draw/_draw.pyx index 0d384a38..94bbd9de 100644 --- a/skimage/draw/_draw.pyx +++ b/skimage/draw/_draw.pyx @@ -313,7 +313,7 @@ def circle_perimeter(Py_ssize_t cy, Py_ssize_t cx, Py_ssize_t radius, ---------- cy, cx : int Centre coordinate of circle. - radius: int + radius : int Radius of circle. method : {'bresenham', 'andres'}, optional bresenham : Bresenham method (default) @@ -424,7 +424,7 @@ def circle_perimeter_aa(Py_ssize_t cy, Py_ssize_t cx, Py_ssize_t radius, ---------- cy, cx : int Centre coordinate of circle. - radius: int + radius : int Radius of circle. shape : tuple, optional Image shape which is used to determine the maximum extent of output pixel diff --git a/skimage/draw/draw.py b/skimage/draw/draw.py index 340292ea..370d48fc 100644 --- a/skimage/draw/draw.py +++ b/skimage/draw/draw.py @@ -88,7 +88,7 @@ def circle(r, c, radius, shape=None): ---------- r, c : double Centre coordinate of circle. - radius: double + radius : double Radius of circle. shape : tuple, optional Image shape which is used to determine the maximum extent of output pixel