@@ -421,7 +421,7 @@ def set_pickradius(self, pr):
421421
422422 Parameters
423423 ----------
424- d : float
424+ pr : float
425425 Pick radius, in points.
426426 """
427427 self ._pickradius = pr
@@ -703,7 +703,7 @@ def _bcast_lwls(linewidths, dashes):
703703 Returns
704704 -------
705705 linewidths, dashes : list
706- Will be the same length, dashes are scaled by paired linewidth
706+ Will be the same length, dashes are scaled by paired linewidth
707707 """
708708 if mpl .rcParams ['_internal.classic_mode' ]:
709709 return linewidths , dashes
@@ -1382,15 +1382,17 @@ def __init__(self, segments, # Can be None.
13821382 antialiaseds : bool or list of bool, default: :rc:`lines.antialiased`
13831383 Whether to use antialiasing for each line.
13841384 zorder : int, default: 2
1385- zorder of the lines once drawn.
1385+ zorder of the lines once drawn.
1386+
13861387 facecolors : color or list of color, default: 'none'
1387- When setting *facecolors*, each line is interpreted as a boundary
1388- for an area, implicitly closing the path from the last point to the
1389- first point. The enclosed area is filled with *facecolor*.
1390- In order to manually specify what should count as the "interior" of
1391- each line, please use `.PathCollection` instead, where the
1392- "interior" can be specified by appropriate usage of
1393- `~.path.Path.CLOSEPOLY`.
1388+ When setting *facecolors*, each line is interpreted as a boundary
1389+ for an area, implicitly closing the path from the last point to the
1390+ first point. The enclosed area is filled with *facecolor*.
1391+ In order to manually specify what should count as the "interior" of
1392+ each line, please use `.PathCollection` instead, where the
1393+ "interior" can be specified by appropriate usage of
1394+ `~.path.Path.CLOSEPOLY`.
1395+
13941396 **kwargs
13951397 Forwareded to `.Collection`.
13961398 """
0 commit comments