@@ -149,20 +149,20 @@ class in the matplotlib API, and the one you will be working with most
149
149
# Customizing your objects
150
150
# ========================
151
151
#
152
- # Every element in the figure is represented by a matplotlib
152
+ # Every element in the figure is represented by a Matplotlib
153
153
# :class:`~matplotlib.artist.Artist`, and each has an extensive list of
154
154
# properties to configure its appearance. The figure itself contains a
155
155
# :class:`~matplotlib.patches.Rectangle` exactly the size of the figure,
156
156
# which you can use to set the background color and transparency of the
157
157
# figures. Likewise, each :class:`~matplotlib.axes.Axes` bounding box
158
- # (the standard white box with black edges in the typical matplotlib
158
+ # (the standard white box with black edges in the typical Matplotlib
159
159
# plot, has a ``Rectangle`` instance that determines the color,
160
160
# transparency, and other properties of the Axes. These instances are
161
161
# stored as member variables :attr:`Figure.patch
162
162
# <matplotlib.figure.Figure.patch>` and :attr:`Axes.patch
163
163
# <matplotlib.axes.Axes.patch>` ("Patch" is a name inherited from
164
164
# MATLAB, and is a 2D "patch" of color on the figure, e.g., rectangles,
165
- # circles and polygons). Every matplotlib ``Artist`` has the following
165
+ # circles and polygons). Every Matplotlib ``Artist`` has the following
166
166
# properties
167
167
#
168
168
# ========== =================================================================
@@ -354,7 +354,7 @@ class in the matplotlib API, and the one you will be working with most
354
354
# Axes container
355
355
# --------------
356
356
#
357
- # The :class:`matplotlib.axes.Axes` is the center of the matplotlib
357
+ # The :class:`matplotlib.axes.Axes` is the center of the Matplotlib
358
358
# universe -- it contains the vast majority of all the ``Artists`` used
359
359
# in a figure with many helper methods to create and add these
360
360
# ``Artists`` to itself, as well as helper methods to access and
0 commit comments