|
From: <ds...@us...> - 2008-12-11 03:25:34
|
Revision: 6561
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6561&view=rev
Author: dsdale
Date: 2008-12-11 03:25:31 +0000 (Thu, 11 Dec 2008)
Log Message:
-----------
fixed a typo in whats_new_98_4_legend.py
Modified Paths:
--------------
trunk/matplotlib/doc/pyplots/whats_new_98_4_legend.py
Modified: trunk/matplotlib/doc/pyplots/whats_new_98_4_legend.py
===================================================================
--- trunk/matplotlib/doc/pyplots/whats_new_98_4_legend.py 2008-12-11 03:04:59 UTC (rev 6560)
+++ trunk/matplotlib/doc/pyplots/whats_new_98_4_legend.py 2008-12-11 03:25:31 UTC (rev 6561)
@@ -8,7 +8,7 @@
for n in [1, 2, 3, 4]:
plt.plot(t1, t1**n, label="n=%d"%(n,))
-leg = plt.legend(loc='best', nncol=2, mode="expand", shadow=True, fancybox=True)
+leg = plt.legend(loc='best', ncol=2, mode="expand", shadow=True, fancybox=True)
leg.get_frame().set_alpha(0.5)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|