From ca4befd64ec4f1e67140e35d51641a0be1d944eb Mon Sep 17 00:00:00 2001 From: Adrien F Vincent Date: Sun, 3 Jul 2016 15:29:23 +0200 Subject: [PATCH] Fix typo in IdentityTransform docstring --- lib/matplotlib/transforms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/transforms.py b/lib/matplotlib/transforms.py index 0a523d1028d..fca485d2a18 100644 --- a/lib/matplotlib/transforms.py +++ b/lib/matplotlib/transforms.py @@ -2024,7 +2024,7 @@ def _get_is_separable(self): class IdentityTransform(Affine2DBase): """ - A special class that does on thing, the identity transform, in a + A special class that does one thing, the identity transform, in a fast way. """ _mtx = np.identity(3)