Skip to content

Commit 42e08d3

Browse files
authored
Solve #28296 Added missing comma
1 parent 00c82ce commit 42e08d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/axes/_axes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1589,7 +1589,7 @@ def plot(self, *args, scalex=True, scaley=True, data=None, **kwargs):
15891589
>>> plot(x1, y1, 'bo')
15901590
>>> plot(x2, y2, 'go')
15911591
1592-
- If *x* and/or *y* are 2D arrays a separate data set will be drawn
1592+
- If *x* and/or *y* are 2D arrays, a separate data set will be drawn
15931593
for every column. If both *x* and *y* are 2D, they must have the
15941594
same shape. If only one of them is 2D with shape (N, m) the other
15951595
must have length N and will be used for every data set m.

0 commit comments

Comments
 (0)