summaryrefslogtreecommitdiff
path: root/numpy/lib/twodim_base.py
diff options
context:
space:
mode:
authorMarkus Roth <markus.roth@herr-biber.de>2013-11-15 19:15:55 +0100
committerMarkus Roth <markus.roth@herr-biber.de>2013-11-15 19:15:55 +0100
commitb4b5ad21de6e3be3e537c72727f88d40e65d221e (patch)
tree7bc2ce9e4a6f3345394f7b1bf42ad4f8061f13ec /numpy/lib/twodim_base.py
parent1ebbd5cf03546be6b5bed727f89eb98c6cdf5d15 (diff)
downloadnumpy-b4b5ad21de6e3be3e537c72727f88d40e65d221e.tar.gz
Fix typo.
Diffstat (limited to 'numpy/lib/twodim_base.py')
-rw-r--r--numpy/lib/twodim_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/twodim_base.py b/numpy/lib/twodim_base.py
index b3f7aece2..12c0f9bb3 100644
--- a/numpy/lib/twodim_base.py
+++ b/numpy/lib/twodim_base.py
@@ -654,7 +654,7 @@ def histogram2d(x, y, bins=10, range=None, normed=False, weights=None):
>>> im = plt.imshow(H, interpolation='nearest', origin='low',
extent=[xedges[0], xedges[-1], yedges[0], yedges[-1]])
- pcolormesh can displaying exact bin edges:
+ pcolormesh can display exact bin edges:
>>> ax = fig.add_subplot(132)
>>> ax.set_title('pcolormesh:\nexact bin edges')