@@ -149,20 +149,20 @@ class in the matplotlib API, and the one you will be working with most
149149# Customizing your objects
150150# ========================
151151#
152- # Every element in the figure is represented by a matplotlib
152+ # Every element in the figure is represented by a Matplotlib
153153# :class:`~matplotlib.artist.Artist`, and each has an extensive list of
154154# properties to configure its appearance. The figure itself contains a
155155# :class:`~matplotlib.patches.Rectangle` exactly the size of the figure,
156156# which you can use to set the background color and transparency of the
157157# 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
159159# plot, has a ``Rectangle`` instance that determines the color,
160160# transparency, and other properties of the Axes. These instances are
161161# stored as member variables :attr:`Figure.patch
162162# <matplotlib.figure.Figure.patch>` and :attr:`Axes.patch
163163# <matplotlib.axes.Axes.patch>` ("Patch" is a name inherited from
164164# 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
166166# properties
167167#
168168# ========== =================================================================
@@ -354,7 +354,7 @@ class in the matplotlib API, and the one you will be working with most
354354# Axes container
355355# --------------
356356#
357- # The :class:`matplotlib.axes.Axes` is the center of the matplotlib
357+ # The :class:`matplotlib.axes.Axes` is the center of the Matplotlib
358358# universe -- it contains the vast majority of all the ``Artists`` used
359359# in a figure with many helper methods to create and add these
360360# ``Artists`` to itself, as well as helper methods to access and
0 commit comments