8000 Update axis_artist.py · dstansby/matplotlib@601c8bb · GitHub
[go: up one dir, main page]

Skip to content

Commit 601c8bb

Browse files
authored
Update axis_artist.py
Issue - The axisartist.axis_artist docs page has a typo: ax.axis["bottom"].major_ticks.set_ticks_out(True) should be ax.axis["bottom"].major_ticks.set_tick_out(True) (remove 's' after 'tick' in 'set_tick_out') Fixed it by removing the s
1 parent c6d2581 commit 601c8bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mpl_toolkits/axisartist/axis_artist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
Ticks are by default direct opposite side of the ticklabels. To make ticks to
7474
the same side of the ticklabels, ::
7575
76-
ax.axis["bottom"].major_ticks.set_ticks_out(True)
76+
ax.axis["bottom"].major_ticks.set_tick_out(True)
7777
7878
The following attributes can be customized (use the ``set_xxx`` methods):
7979

0 commit comments

Comments
 (0)
0