From 2b5409b591ecb837e0ee0a5cedc11ff4bdc94faf Mon Sep 17 00:00:00 2001 From: Bussonnier Matthias Date: Wed, 25 Jan 2012 15:32:54 +0100 Subject: [PATCH 1/2] fix mpimg.imshow to plt.imshow in doc example --- doc/users/image_tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/users/image_tutorial.rst b/doc/users/image_tutorial.rst index 1bcdab9b1aad..574cebcef2e8 100644 --- a/doc/users/image_tutorial.rst +++ b/doc/users/image_tutorial.rst @@ -181,7 +181,7 @@ This is array slicing. You can read more in the `Numpy tutorial Date: Wed, 25 Jan 2012 15:40:04 +0100 Subject: [PATCH 2/2] image tutorial fix set_clim --- doc/users/image_tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/users/image_tutorial.rst b/doc/users/image_tutorial.rst index 574cebcef2e8..60a860b921e5 100644 --- a/doc/users/image_tutorial.rst +++ b/doc/users/image_tutorial.rst @@ -291,7 +291,7 @@ object. .. sourcecode:: ipython - In[11]: imgplot.set_clim=(0.0,0.7) + In[11]: imgplot.set_clim(0.0,0.7) .. plot::