diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-11-15 10:25:23 -0800 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-11-15 10:25:23 -0800 |
commit | 6eb4a4318bddd6105e91f962dec4a5590f524d02 (patch) | |
tree | ca79101c0c4a920c4ce67bb8f20bc74f42d3486e /numpy | |
parent | 843792b6d349133114930911424772e6bbbc0c9c (diff) | |
parent | b4b5ad21de6e3be3e537c72727f88d40e65d221e (diff) | |
download | numpy-6eb4a4318bddd6105e91f962dec4a5590f524d02.tar.gz |
Merge pull request #4056 from herr-biber/master
Fix typo.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/lib/twodim_base.py | 2 |
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') |