From fe94914874995e44542c9c9e0e8ca7b24cffb1d7 Mon Sep 17 00:00:00 2001 From: Jaidev Deshpande Date: Mon, 6 Jan 2014 12:47:47 +0530 Subject: [PATCH] Fix typo in docstring --- skimage/measure/_moments.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/measure/_moments.pyx b/skimage/measure/_moments.pyx index 6b7197d2..e6ccdb75 100644 --- a/skimage/measure/_moments.pyx +++ b/skimage/measure/_moments.pyx @@ -12,7 +12,7 @@ def moments(double[:, :] image, Py_ssize_t order=3): * Area as ``m[0, 0]``. * Centroid as {``m[0, 1] / m[0, 0]``, ``m[1, 0] / m[0, 0]``}. - Note that raw moments are whether translation, scale nor rotation + Note that raw moments are neither translation, scale nor rotation invariant. Parameters