@@ -1282,16 +1282,16 @@ def __init__(
12821282 - 'x': the curves are ``(t, f1)`` and ``(t, f2)``.
12831283 - 'y': the curves are ``(f1, t)`` and ``(f2, t)``.
12841284
1285- t : array (length N)
1285+ t : array-like
12861286 The ``t_direction`` coordinates of the nodes defining the curves.
12871287
1288- f1 : array (length N) or scalar
1288+ f1 : array-like or float
12891289 The other coordinates of the nodes defining the first curve.
12901290
1291- f2 : array (length N) or scalar
1291+ f2 : array-like or float
12921292 The other coordinates of the nodes defining the second curve.
12931293
1294- where : array of bool (length N) , optional
1294+ where : array-like of bool, optional
12951295 Define *where* to exclude some {dir} regions from being filled.
12961296 The filled regions are defined by the coordinates ``t[where]``.
12971297 More precisely, fill between ``t[i]`` and ``t[i+1]`` if
@@ -1362,16 +1362,16 @@ def set_data(self, t, f1, f2, *, where=None):
13621362
13631363 Parameters
13641364 ----------
1365- t : array (length N)
1365+ t : array-like
13661366 The ``self.t_direction`` coordinates of the nodes defining the curves.
13671367
1368- f1 : array (length N) or scalar
1368+ f1 : array-like or float
13691369 The other coordinates of the nodes defining the first curve.
13701370
1371- f2 : array (length N) or scalar
1371+ f2 : array-like or float
13721372 The other coordinates of the nodes defining the second curve.
13731373
1374- where : array of bool (length N) , optional
1374+ where : array-like of bool, optional
13751375 Define *where* to exclude some {dir} regions from being filled.
13761376 The filled regions are defined by the coordinates ``t[where]``.
13771377 More precisely, fill between ``t[i]`` and ``t[i+1]`` if
0 commit comments