Skip to content

Commit 16d235f

Browse files
authored
Fix order of arguments in docstring
1 parent 2d5f451 commit 16d235f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/ImageDraw.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,8 @@ Methods
320320
:param xy: Two points to define the bounding box. Sequence of either
321321
``[(x0, y0), (x1, y1)]`` or ``[x0, y0, x1, y1]``, where ``x1 >= x0`` and
322322
``y1 >= y0``. The bounding box is inclusive of both endpoints.
323-
:param outline: Color to use for the outline.
324323
:param fill: Color to use for the fill.
324+
:param outline: Color to use for the outline.
325325
:param width: The line width, in pixels.
326326

327327
.. versionadded:: 5.3.0
@@ -334,8 +334,8 @@ Methods
334334
``[(x0, y0), (x1, y1)]`` or ``[x0, y0, x1, y1]``, where ``x1 >= x0`` and
335335
``y1 >= y0``. The bounding box is inclusive of both endpoints.
336336
:param radius: Radius of the corners.
337-
:param outline: Color to use for the outline.
338337
:param fill: Color to use for the fill.
338+
:param outline: Color to use for the outline.
339339
:param width: The line width, in pixels.
340340
:param corners: A tuple of whether to round each corner,
341341
``(top_left, top_right, bottom_right, bottom_left)``.

0 commit comments

Comments
 (0)