Skip to content

Commit 3dbd98b

Browse files
authored
Apply suggestions from code review
1 parent 5aa620c commit 3dbd98b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/stackplot.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ def stackplot(axes, x, *args,
2323
2424
Parameters
2525
----------
26-
x : (N, ) array-like
26+
x : (N,) array-like
2727
2828
y : (M, N) array-like
2929
The data can be either stacked or unstacked. Each of the following
3030
calls is legal::
31-
stackplot(x, y) # where y has shape (M, N) e.g. y = [y1, y2, y3, y4]
32-
stackplot(x, y1, y2, y3, y4) # where y1, y2, y3, y4 have length N
31+
stackplot(x, y) # where y has shape (M, N) e.g. y = [y1, y2, y3, y4]
32+
stackplot(x, y1, y2, y3, y4) # where y1, y2, y3, y4 have length N
3333
3434
3535
baseline : {'zero', 'sym', 'wiggle', 'weighted_wiggle'}

0 commit comments

Comments
 (0)