From 241410be14b5d1fce1bf42897be3a1dee77d841f Mon Sep 17 00:00:00 2001 From: trananso Date: Mon, 25 Mar 2024 16:28:17 -0400 Subject: [PATCH] DOC: Fix typo in ```ax.transData.inversed()``` --- galleries/users_explain/artists/transforms_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galleries/users_explain/artists/transforms_tutorial.py b/galleries/users_explain/artists/transforms_tutorial.py index bf99dfd81d2a..8eed53c812b8 100644 --- a/galleries/users_explain/artists/transforms_tutorial.py +++ b/galleries/users_explain/artists/transforms_tutorial.py @@ -82,7 +82,7 @@ `.Transform.inverted`) to generate a transform from output coordinate system back to the input coordinate system. For example, ``ax.transData`` converts values in data coordinates to display coordinates and -``ax.transData.inversed()`` is a :class:`matplotlib.transforms.Transform` that +``ax.transData.inverted()`` is a :class:`matplotlib.transforms.Transform` that goes from display coordinates to data coordinates. This is particularly useful when processing events from the user interface, which typically occur in display space, and you want to know where the mouse click or key-press occurred