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