|
From: <ry...@us...> - 2008-12-08 20:21:37
|
Revision: 6516
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6516&view=rev
Author: ryanmay
Date: 2008-12-08 20:21:33 +0000 (Mon, 08 Dec 2008)
Log Message:
-----------
Correct typo in comment.
Modified Paths:
--------------
trunk/matplotlib/examples/pylab_examples/line_collection2.py
Modified: trunk/matplotlib/examples/pylab_examples/line_collection2.py
===================================================================
--- trunk/matplotlib/examples/pylab_examples/line_collection2.py 2008-12-08 17:05:28 UTC (rev 6515)
+++ trunk/matplotlib/examples/pylab_examples/line_collection2.py 2008-12-08 20:21:33 UTC (rev 6516)
@@ -10,7 +10,7 @@
# Here are many sets of y to plot vs x
ys = [x+i for i in x]
-# We need to set the plot limits, the will not autoscale
+# We need to set the plot limits, they will not autoscale
ax = axes()
ax.set_xlim((amin(x),amax(x)))
ax.set_ylim((amin(amin(ys)),amax(amax(ys))))
@@ -32,5 +32,3 @@
ax.set_title('Line Collection with mapped colors')
sci(line_segments) # This allows interactive changing of the colormap.
show()
-
-
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|