Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1574c70

Browse files
committed
Make MarkerStyle marker choices a list
Rather than new paragraphs, each option is a new rst - style list item.
1 parent ffa8471 commit 1574c70

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

lib/matplotlib/markers.py

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -218,12 +218,9 @@ def __init__(self, marker=None, fillstyle=None):
218218
Parameters
219219
----------
220220
marker : str, array-like, Path, MarkerStyle, or None, default: None
221-
222-
Another instance of *MarkerStyle* copies the details of that ``marker``.
223-
224-
*None* means no marker.
225-
226-
For other possible marker values see the module docstring `matplotlib.markers`.
221+
- Another instance of *MarkerStyle* copies the details of that ``marker``.
222+
- *None* means no marker.
223+
- For other possible marker values see the module docstring `matplotlib.markers`.
227224
228225
fillstyle : str, default: 'full'
229226
One of 'full', 'left', 'right', 'bottom', 'top', 'none'.
@@ -289,12 +286,9 @@ def set_marker(self, marker):
289286
Parameters
290287
----------
291288
marker : str, array-like, Path, MarkerStyle, or None, default: None
292-
293-
Another instance of *MarkerStyle* copies the details of that ``marker``.
294-
295-
*None* means no marker.
296-
297-
For other possible marker values see the module docstring `matplotlib.markers`.
289+
- Another instance of *MarkerStyle* copies the details of that ``marker``.
290+
- *None* means no marker.
291+
- For other possible marker values see the module docstring `matplotlib.markers`.
298292
"""
299293
if (isinstance(marker, np.ndarray) and marker.ndim == 2 and
300294
marker.shape[1] == 2):

0 commit comments

Comments
 (0)