File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Prior to 1.5.3 kwargs passed to `~matplotlib.Axes.plot` were handled
21
21
in two parts -- default kwargs generated internal to
22
22
`~matplotlib.Axes.plot ` (such as the cycled styles) and user supplied
23
23
kwargs. The internally generated kwargs were passed to the
24
- `~ matplotlib.lines.Line2D.__init__ ` and the user kwargs were passed to
24
+ `matplotlib.lines.Line2D.__init__ ` and the user kwargs were passed to
25
25
``ln.set(**kwargs) `` to update the artist after it was created. Now
26
26
both sets of kwargs are merged and passed to
27
27
`~matplotlib.lines.Line2D.__init__ `. This change was made to allow `None `
@@ -35,7 +35,7 @@ input which was mapped to 'no marker'. Thus, by routing this
35
35
of ``ax.plot(..., marker=None) `` changed from 'no markers' to 'default markers
36
36
from rcparams'.
37
37
38
- This is change in only evident if ``mpl.rcParams['lines.marker'] `` has a value
38
+ This is change is only evident if ``mpl.rcParams['lines.marker'] `` has a value
39
39
other than ``'None' `` (which is string ``'None' `` which means 'no marker').
40
40
41
41
You can’t perform that action at this time.
0 commit comments