From 906d07238e946c8c6449f805df5eb07ab46d562f Mon Sep 17 00:00:00 2001 From: yvonnefroelich Date: Thu, 16 May 2024 15:31:51 +0200 Subject: [PATCH] Fix typo in label for 'justify' --- examples/tutorials/basics/text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tutorials/basics/text.py b/examples/tutorials/basics/text.py index 35744456e40..37b8cb4dc20 100644 --- a/examples/tutorials/basics/text.py +++ b/examples/tutorials/basics/text.py @@ -82,7 +82,7 @@ # Plot text labels at the x and y positions of the markers while varying the anchor # point via the justify parameter fig.text(x=-0.5, y=0.5, text="TL", justify="TL") # TopLeft -fig.text(x=0, y=0.5, text="TM", justify="TC") # TopCenter +fig.text(x=0, y=0.5, text="TC", justify="TC") # TopCenter fig.text(x=0.5, y=0.5, text="TR", justify="TR") # TopRight fig.text(x=-0.5, y=0, text="ML", justify="ML") # MiddleLeft fig.text(x=0, y=0, text="MC", justify="MC") # MiddleCenter