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)