From a4c986b02ff636d6414bbdff8c346a2e0b0a0d2b Mon Sep 17 00:00:00 2001 From: Zach Pincus Date: Wed, 1 Feb 2012 22:57:44 -0500 Subject: [PATCH] DOC: Fix read_multipage docstring --- skimage/io/_plugins/freeimage_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/io/_plugins/freeimage_plugin.py b/skimage/io/_plugins/freeimage_plugin.py index 504de7c3..a549d6c6 100644 --- a/skimage/io/_plugins/freeimage_plugin.py +++ b/skimage/io/_plugins/freeimage_plugin.py @@ -391,7 +391,7 @@ def _process_multipage(filename, flags, process_func): def read_multipage(filename, flags=0): """Read a multipage image to a list of numpy arrays, where each array is of shape (width, height) for greyscale images, or shape - (nchannels, width, height) for RGB or RGBA images. + (width, height, nchannels) for RGB or RGBA images. """ return _process_multipage(filename, flags, _array_from_bitmap)