|
From: <jo...@us...> - 2009-08-22 06:25:16
|
Revision: 7519
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7519&view=rev
Author: jouni
Date: 2009-08-22 06:25:07 +0000 (Sat, 22 Aug 2009)
Log Message:
-----------
Fix typos found by Marc Desmarais and Nicolas Pinto
Modified Paths:
--------------
branches/v0_99_maint/doc/users/artists.rst
branches/v0_99_maint/lib/matplotlib/axes.py
Modified: branches/v0_99_maint/doc/users/artists.rst
===================================================================
--- branches/v0_99_maint/doc/users/artists.rst 2009-08-22 04:19:45 UTC (rev 7518)
+++ branches/v0_99_maint/doc/users/artists.rst 2009-08-22 06:25:07 UTC (rev 7519)
@@ -37,7 +37,7 @@
:class:`~matplotlib.text.Text`,
:class:`~matplotlib.patches.Rectangle`,
:class:`~matplotlib.image.Image`, respectively). These helper methods
-will take your data (eg. ``numpy`` arrays and strings) create
+will take your data (eg. ``numpy`` arrays and strings) and create
primitive ``Artist`` instances as needed (eg. ``Line2D``), add them to
the relevant containers, and draw them when requested. Most of you
are probably familiar with the :class:`~matplotlib.axes.Subplot`,
Modified: branches/v0_99_maint/lib/matplotlib/axes.py
===================================================================
--- branches/v0_99_maint/lib/matplotlib/axes.py 2009-08-22 04:19:45 UTC (rev 7518)
+++ branches/v0_99_maint/lib/matplotlib/axes.py 2009-08-22 06:25:07 UTC (rev 7519)
@@ -3828,7 +3828,7 @@
"""
return handles and labels for legend
- ax.legend() is equibalent to ::
+ ax.legend() is equivalent to ::
h, l = ax.get_legend_handles_labels()
ax.legend(h, l)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|