@@ -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
@@ -705,7 +705,7 @@ def _bcast_lwls(linewidths, dashes):
705705 Returns
706706 -------
707707 linewidths, dashes : list
708- Will be the same length, dashes are scaled by paired linewidth
708+ Will be the same length, dashes are scaled by paired linewidth
709709 """
710710 if mpl .rcParams ['_internal.classic_mode' ]:
711711 return linewidths , dashes
@@ -1384,15 +1384,17 @@ def __init__(self, segments, # Can be None.
13841384 antialiaseds : bool or list of bool, default: :rc:`lines.antialiased`
13851385 Whether to use antialiasing for each line.
13861386 zorder : int, default: 2
1387- zorder of the lines once drawn.
1387+ zorder of the lines once drawn.
1388+
13881389 facecolors : color or list of color, default: 'none'
1389- When setting *facecolors*, each line is interpreted as a boundary
1390- for an area, implicitly closing the path from the last point to the
1391- first point. The enclosed area is filled with *facecolor*.
1392- In order to manually specify what should count as the "interior" of
1393- each line, please use `.PathCollection` instead, where the
1394- "interior" can be specified by appropriate usage of
1395- `~.path.Path.CLOSEPOLY`.
1390+ When setting *facecolors*, each line is interpreted as a boundary
1391+ for an area, implicitly closing the path from the last point to the
1392+ first point. The enclosed area is filled with *facecolor*.
1393+ In order to manually specify what should count as the "interior" of
1394+ each line, please use `.PathCollection` instead, where the
1395+ "interior" can be specified by appropriate usage of
1396+ `~.path.Path.CLOSEPOLY`.
1397+
13961398 **kwargs
13971399 Forwareded to `.Collection`.
13981400 """
0 commit comments