From c2da45be3c7d2351226d895d035444267faaedde Mon Sep 17 00:00:00 2001 From: Adrian Price-Whelan Date: Tue, 24 Jan 2017 12:47:37 -0500 Subject: [PATCH] fix typo in toolkits docs --- doc/mpl_toolkits/axisartist/overview.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/mpl_toolkits/axisartist/overview.rst b/doc/mpl_toolkits/axisartist/overview.rst index a284b5e247fe..fc59e0562389 100644 --- a/doc/mpl_toolkits/axisartist/overview.rst +++ b/doc/mpl_toolkits/axisartist/overview.rst @@ -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. @@ -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)