8000 DOC : whole bunch of documentation clean up by tacaswell · Pull Request #3170 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

DOC : whole bunch of documentation clean up #3170

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 20 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
DOC : minor rst markup fix
  • Loading branch information
tacaswell committed Jul 18, 2014
commit 6d0503bfad059149fef4a5544ad9368714efc75c
12 changes: 6 additions & 6 deletions doc/faq/usage_faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Parts of a Figure
:class:`~matplotlib.figure.Figure`
----------------------------------

The _whole_ figure (marked as the outer red box). The figure keeps
The **whole** figure (marked as the outer red box). The figure keeps
track of all the child :class:`~matplotlib.axes.Axes`, a smattering of
'special' artists (titles, figure legends, etc), and the **canvas**.
(Don't worry too much about the canvas, it is crucial as it is the
Expand All @@ -81,12 +81,12 @@ axes contains two (or three in the case of 3D)
:class:`~matplotlib.axis.Axis` objects (be aware of the difference
between **Axes** and **Axis**) which take care of the data limits (the
data limits can also be controlled via set via the
:func:`~matplotlib.axes.Axes.set_xlim` and
:func:`~matplotlib.axes.Axes.set_ylim` :class:`Axes` methods). Each
:meth:`~matplotlib.axes.Axes.set_xlim` and
:meth:`~matplotlib.axes.Axes.set_ylim` :class:`Axes` methods). Each
:class:`Axes` has a title (set via
:func:`~matplotlib.axes.Axes.set_title`), an x-label (set via
:func:`~matplotlib.axes.Axes.set_xlabel`), and a y-label set via
:func:`~matplotlib.a 506D xes.Axes.set_ylabel`).
:meth:`~matplotlib.axes.Axes.set_title`), an x-label (set via
:meth:`~matplotlib.axes.Axes.set_xlabel`), and a y-label set via
:meth:`~matplotlib.axes.Axes.set_ylabel`).

The :class:`Axes` class and it's member functions are the primary entry
point to working with the OO interface.
Expand Down
0