Skip to content

Commit 909f14b

Browse files
committed
Remove redundant rcparam default
1 parent 9c5a749 commit 909f14b

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

examples/images_contours_and_fields/interpolation_methods.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
If the interpolation is ``'none'``, then no interpolation is performed for the
1111
Agg, ps and pdf backends. Other backends will default to ``'antialiased'``.
1212
13-
For the Agg, ps and pdf backends, ``interpolation = 'none'`` works well when a
14-
big image is scaled down, while ``interpolation = 'nearest'`` works well when
13+
For the Agg, ps and pdf backends, ``interpolation='none'`` works well when a
14+
big image is scaled down, while ``interpolation='nearest'`` works well when
1515
a small image is scaled up.
1616
1717
See :doc:`/gallery/images_contours_and_fields/image_antialiasing` for a
18-
discussion on the default ``interpolation="antialiased"`` option.
18+
discussion on the default ``interpolation='antialiased'`` option.
1919
"""
2020

2121
import matplotlib.pyplot as plt

examples/ticks/tick_label_right.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
Set default y-axis tick labels on the right
44
============================================
55
6-
We can use :rc:`ytick.labelright` (default False) and :rc:`ytick.right`
7-
(default False) and :rc:`ytick.labelleft` (default True) and :rc:`ytick.left`
8-
(default True) to control where on the axes ticks and their labels appear.
9-
These properties can also be set in the ``.matplotlib/matplotlibrc``.
6+
We can use :rc:`ytick.labelright`, :rc:`ytick.right`,:rc:`ytick.labelleft`,
7+
and :rc:`ytick.left` to control where on the axes ticks and their labels
8+
appear. These properties can also be set in the ``.matplotlib/matplotlibrc``.
109
1110
"""
1211
import matplotlib.pyplot as plt

0 commit comments

Comments
 (0)