From 3df362a1b12edb1af3df8d0ca56f4978a962b52e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Sun, 22 May 2016 16:23:19 +0200 Subject: [PATCH] DOC: add space before column on variable def --- skimage/draw/_draw.pyx | 4 ++-- skimage/draw/draw.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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