File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -416,8 +416,8 @@ def test_inverted_cla():
416
416
assert not ax .xaxis_inverted ()
417
417
assert ax .yaxis_inverted ()
418
418
419
- # 5. two shared axes. Inverting the master axis should invert the shared
420
- # axes; clearing the master axis should bring axes in shared
419
+ # 5. two shared axes. Inverting the leader axis should invert the shared
420
+ # axes; clearing the leader axis should bring axes in shared
421
421
# axes back to normal.
422
422
ax0 = plt .subplot (211 )
423
423
ax1 = plt .subplot (212 , sharey = ax0 )
@@ -427,7 +427,7 @@ def test_inverted_cla():
427
427
ax0 .cla ()
428
428
assert not ax1 .yaxis_inverted ()
429
429
ax1 .cla ()
430
- # 6. clearing the nonmaster should not touch limits
430
+ # 6. clearing the nonleader should not touch limits
431
431
ax0 .imshow (img )
432
432
ax1 .plot (x , np .cos (x ))
433
433
ax1 .cla ()
@@ -507,7 +507,7 @@ def test_use_sticky_edges():
507
507
@check_figures_equal (extensions = ["png" ])
508
508
def test_sticky_shared_axes (fig_test , fig_ref ):
509
509
# Check that sticky edges work whether they are set in an axes that is a
510
- # "master " in a share, or an axes that is a "follower".
510
+ # "leader " in a share, or an axes that is a "follower".
511
511
Z = np .arange (15 ).reshape (3 , 5 )
512
512
513
513
ax0 = fig_test .add_subplot (211 )
Original file line number Diff line number Diff line change 76
76
`.AxesDivider.append_axes` can then be used to create a new axes on a given
77
77
side ("left", "right", "top", "bottom") of the original axes.
78
78
79
- colorbar whose height (or width) in sync with the master axes
80
- -------------------------------------------------------------
79
+ colorbar whose height (or width) in sync with the main axes
80
+ -----------------------------------------------------------
81
81
82
82
.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_colorbar_001.png
83
83
:target: ../../gallery/axes_grid1/simple_colorbar.html
You can’t perform that action at this time.
0 commit comments