From cae47eda18efec41a077b2b37ff515dbf4db8898 Mon Sep 17 00:00:00 2001 From: Nicolas Pinto Date: Mon, 13 Feb 2012 09:37:44 -0500 Subject: [PATCH] STY: fix typos --- skimage/util/shape.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/util/shape.py b/skimage/util/shape.py index 22156e06..c0eeb40d 100644 --- a/skimage/util/shape.py +++ b/skimage/util/shape.py @@ -9,7 +9,7 @@ from numpy.lib.stride_tricks import as_strided def view_as_blocks(arr_in, block_shape): - """Block view of the input n-dimensionaly array (using re-striding). + """Block view of the input n-dimensional array (using re-striding). Parameters ---------- @@ -112,7 +112,7 @@ def view_as_windows(arr_in, window_shape): window_shape: tuple Defines the shape of the elementary n-dimensional orthotope - (better know as hyperrectangle [1]) of the rolling window view. + (better know as hyperrectangle [1]_) of the rolling window view. Returns -------