From 792fdd8a6433090fc0f128e98b2e0ab58a0926f0 Mon Sep 17 00:00:00 2001 From: David Stansby Date: Fri, 26 Apr 2019 12:30:30 +0100 Subject: [PATCH] Remove references to "Draws" in matplotlib.patches --- lib/matplotlib/patches.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/matplotlib/patches.py b/lib/matplotlib/patches.py index c125bca741b1..148aaa3f51d7 100644 --- a/lib/matplotlib/patches.py +++ b/lib/matplotlib/patches.py @@ -658,7 +658,7 @@ def draw(self, renderer): class Rectangle(Patch): """ - Draw a rectangle with lower left at *xy* = (*x*, *y*) with + A rectangle with lower left at *xy* = (*x*, *y*) with specified *width*, *height* and rotation *angle*. """ @@ -1048,7 +1048,7 @@ def __str__(self): @docstring.dedent_interpd def __init__(self, center, r, theta1, theta2, width=None, **kwargs): """ - Draw a wedge centered at *x*, *y* center with radius *r* that + A wedge centered at *x*, *y* center with radius *r* that sweeps *theta1* to *theta2* (in degrees). If *width* is given, then a partial wedge is drawn from inner radius *r* - *width* to outer radius *r*. @@ -2437,7 +2437,7 @@ def transmute(self, x0, y0, width, height, mutation_size): class FancyBboxPatch(Patch): """ - Draw a fancy box around a rectangle with lower left at *xy*=(*x*, + A fancy box around a rectangle with lower left at *xy*=(*x*, *y*) with specified width and height. :class:`FancyBboxPatch` class is similar to :class:`Rectangle`