Skip to content

Commit

Permalink
Fix one more failing doc example
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Oct 21, 2014
1 parent b248596 commit c0995e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/pyplots/annotate_transform.py
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
ax.set_ylim(-1, 1)

xdata, ydata = 5, 0
xdisplay, ydisplay = ax.transData.transform((xdata, ydata))
xdisplay, ydisplay = ax.transData.transform_point((xdata, ydata))

bbox = dict(boxstyle="round", fc="0.8")
arrowprops = dict(

0 comments on commit c0995e5

Please sign in to comment.