|
From: <ry...@us...> - 2009-09-21 16:30:19
|
Revision: 7808
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7808&view=rev
Author: ryanmay
Date: 2009-09-21 16:30:11 +0000 (Mon, 21 Sep 2009)
Log Message:
-----------
Correct typo of subtitle() -> suptitle().
Modified Paths:
--------------
branches/v0_99_maint/CHANGELOG
branches/v0_99_maint/lib/matplotlib/figure.py
Modified: branches/v0_99_maint/CHANGELOG
===================================================================
--- branches/v0_99_maint/CHANGELOG 2009-09-21 12:11:21 UTC (rev 7807)
+++ branches/v0_99_maint/CHANGELOG 2009-09-21 16:30:11 UTC (rev 7808)
@@ -890,7 +890,7 @@
2008-06-05 Fix image drawing so there is no extra space to the right
or bottom - MGD
-2006-06-04 Added a figure title command subtitle as a Figure method
+2006-06-04 Added a figure title command suptitle as a Figure method
and pyplot command -- see examples/figure_title.py - JDH
2008-06-02 Added support for log to hist with histtype='step' and fixed
Modified: branches/v0_99_maint/lib/matplotlib/figure.py
===================================================================
--- branches/v0_99_maint/lib/matplotlib/figure.py 2009-09-21 12:11:21 UTC (rev 7807)
+++ branches/v0_99_maint/lib/matplotlib/figure.py 2009-09-21 16:30:11 UTC (rev 7808)
@@ -298,7 +298,7 @@
Example::
- fig.subtitle('this is the figure title', fontsize=12)
+ fig.suptitle('this is the figure title', fontsize=12)
"""
x = kwargs.pop('x', 0.5)
y = kwargs.pop('y', 0.98)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|