From 5711cea92d65a90ddcdfdd0dfc5001dcf842122c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Tue, 15 Jan 2013 14:35:17 +0100 Subject: [PATCH] fix docstring --- skimage/draw/_draw.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/draw/_draw.pyx b/skimage/draw/_draw.pyx index c0fd798b..551673f0 100644 --- a/skimage/draw/_draw.pyx +++ b/skimage/draw/_draw.pyx @@ -133,7 +133,7 @@ def ellipse(double cy, double cx, double yradius, double xradius, shape=None): ---------- cy, cx : double Centre coordinate of ellipse. - yradius, xradius: double + yradius, xradius : double Minor and major semi-axes. ``(x/xradius)**2 + (y/yradius)**2 = 1``. Returns