Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Trivial change
  • Loading branch information
lukelbd committed Jun 30, 2021
commit 1d433765ecdaad770ee81424a85d693a3d41ba68
4 changes: 2 additions & 2 deletions proplot/axes/cartesian.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ def format(
is :rc:`ticklen`.

Minor tick lengths are scaled according
to :rc:`ticklenratio`. Use e.g. ``ax.format(ticklen=1)`` to
to :rc:`tick.lenratio`. Use e.g. ``ax.format(ticklen=1)`` to
set for both axes.
fixticks : bool, optional
Whether to always transform the tick locators to a
Expand Down Expand Up @@ -924,7 +924,7 @@ def format(
if ticklen is not None:
kwticks['size'] = units(ticklen, 'pt')
if which == 'minor':
kwticks['size'] *= rc['ticklenratio']
kwticks['size'] *= rc['tick.lenratio']

# Grid style and toggling
name = 'grid' if which == 'major' else 'gridminor'
Expand Down