DOC: add space before column on variable def

This commit is contained in:
François Boulogne
2016-05-22 16:23:19 +02:00
parent 20e6014481
commit 3df362a1b1
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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
+1 -1
View File
@@ -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