8000 Fix typo in toolkits docs by adrn · Pull Request #7938 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fix typo in toolkits docs #7938

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

Merged
merged 1 commit into from
Jan 24, 2017
Merged
Changes from all commits
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
< 8000 !-- -->
Diff view
6 changes: 3 additions & 3 deletions doc/mpl_toolkits/axisartist/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Overview of axisartist toolkit
==============================

.. warning::
*axisartist* uses a custom Axes class
.. warning::
*axisartist* uses a custom Axes class
(derived from the mpl's original Axes class).
As a side effect, some commands (mostly tick-related) do not work.

Expand Down Expand Up @@ -84,7 +84,7 @@ Most commands in the axes_grid1 toolkit can take a axes_class keyword
argument, and the commands creates an axes of the given class. For example,
to create a host subplot with axisartist.Axes, ::

import mpl_tookits.axisartist as AA
import mpl_toolkits.axisartist as AA
from mpl_toolkits.axes_grid1 import host_subplot

host = host_subplot(111, axes_class=AA.Axes)
Expand Down
0