Skip to content

Commit 744aeda

Browse files
Tutorial "Plotting text": Fix typo (#3253)
1 parent b3d7575 commit 744aeda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/tutorials/basics/text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
# Plot text labels at the x and y positions of the markers while varying the anchor
8383
# point via the justify parameter
8484
fig.text(x=-0.5, y=0.5, text="TL", justify="TL") # TopLeft
85-
fig.text(x=0, y=0.5, text="TM", justify="TC") # TopCenter
85+
fig.text(x=0, y=0.5, text="TC", justify="TC") # TopCenter
8686
fig.text(x=0.5, y=0.5, text="TR", justify="TR") # TopRight
8787
fig.text(x=-0.5, y=0, text="ML", justify="ML") # MiddleLeft
8888
fig.text(x=0, y=0, text="MC", justify="MC") # MiddleCenter

0 commit comments

Comments
 (0)