From 6d1a8fec7caa17fd8dcaa2beed38fbb9e1586a33 Mon Sep 17 00:00:00 2001 From: benetherington Date: Fri, 22 Jan 2021 11:35:26 -0500 Subject: [PATCH] Fix typos in Sphinx class string Fixed copy-paste error: "rounded rectangle" => "circle," which didn't even affect line wrapping! Minor typos also fixed: unified indenting for wrapped line. Removed an extra period. --- adafruit_display_shapes/circle.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/adafruit_display_shapes/circle.py b/adafruit_display_shapes/circle.py index 1a6735b..ce985bb 100644 --- a/adafruit_display_shapes/circle.py +++ b/adafruit_display_shapes/circle.py @@ -32,12 +32,12 @@ class Circle(RoundRect): """A circle. :param x0: The x-position of the center. - :param y0: The y-position of the center.. + :param y0: The y-position of the center. :param r: The radius of the circle. - :param fill: The color to fill the rounded-corner rectangle. Can be a hex value for a color or + :param fill: The color to fill the circle. Can be a hex value for a color or ``None`` for transparent. - :param outline: The outline of the rounded-corner rectangle. Can be a hex value for a color or - ``None`` for no outline. + :param outline: The outline of the circle. Can be a hex value for a color or + ``None`` for no outline. :param stroke: Used for the outline. Will not change the radius. """