Skip to content

Commit

Permalink
Merge pull request #6625 from d0sboots/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Sep 30, 2022
2 parents aa8877a + 64d11d9 commit bdbf59d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/reference/ImageDraw.rst
Expand Up @@ -285,8 +285,8 @@ Methods
Draws a rectangle.

:param xy: Two points to define the bounding box. Sequence of either
``[(x0, y0), (x1, y1)]`` or ``[x0, y0, x1, y1]``. The second point
is just outside the drawn rectangle.
``[(x0, y0), (x1, y1)]`` or ``[x0, y0, x1, y1]``. The bounding box
is inclusive of both endpoints.
:param outline: Color to use for the outline.
:param fill: Color to use for the fill.
:param width: The line width, in pixels.
Expand All @@ -298,8 +298,8 @@ Methods
Draws a rounded rectangle.

:param xy: Two points to define the bounding box. Sequence of either
``[(x0, y0), (x1, y1)]`` or ``[x0, y0, x1, y1]``. The second point
is just outside the drawn rectangle.
``[(x0, y0), (x1, y1)]`` or ``[x0, y0, x1, y1]``. The bounding box
is inclusive of both endpoints.
:param radius: Radius of the corners.
:param outline: Color to use for the outline.
:param fill: Color to use for the fill.
Expand Down

0 comments on commit bdbf59d

Please sign in to comment.