@@ -3554,7 +3554,7 @@ def add_vline(self, x, row=None, col=None, **kwargs):
3554
3554
first subplot if subplots exist, or the only plot.
3555
3555
**kwargs:
3556
3556
Any named function parameters that can be passed to 'add_shape',
3557
- except for x0, x1, y0, x1 or type.
3557
+ except for x0, x1, y0, y1 or type.
3558
3558
"""
3559
3559
self ._process_multiple_paper_spanning_shapes (
3560
3560
dict (type = "line" , x0 = x , x1 = x , y0 = 0 , y1 = 1 ), row , col , "vertical" , ** kwargs
@@ -3579,7 +3579,7 @@ def add_hline(self, y, row=None, col=None, **kwargs):
3579
3579
first subplot if subplots exist, or the only plot.
3580
3580
**kwargs:
3581
3581
Any named function parameters that can be passed to 'add_shape',
3582
- except for x0, x1, y0, x1 or type.
3582
+ except for x0, x1, y0, y1 or type.
3583
3583
"""
3584
3584
self ._process_multiple_paper_spanning_shapes (
3585
3585
dict (type = "line" , x0 = 0 , x1 = 1 , y0 = y , y1 = y ,), row , col , "horizontal" , ** kwargs
@@ -3606,7 +3606,7 @@ def add_vrect(self, x0, x1, row=None, col=None, **kwargs):
3606
3606
first subplot if subplots exist, or the only plot.
3607
3607
**kwargs:
3608
3608
Any named function parameters that can be passed to 'add_shape',
3609
- except for x0, x1, y0, x1 or type.
3609
+ except for x0, x1, y0, y1 or type.
3610
3610
"""
3611
3611
self ._process_multiple_paper_spanning_shapes (
3612
3612
dict (type = "rect" , x0 = x0 , x1 = x1 , y0 = 0 , y1 = 1 ), row , col , "vertical" , ** kwargs
@@ -3633,7 +3633,7 @@ def add_hrect(self, y0, y1, row=None, col=None, **kwargs):
3633
3633
first subplot if subplots exist, or the only plot.
3634
3634
**kwargs:
3635
3635
Any named function parameters that can be passed to 'add_shape',
3636
- except for x0, x1, y0, x1 or type.
3636
+ except for x0, x1, y0, y1 or type.
3637
3637
"""
3638
3638
self ._process_multiple_paper_spanning_shapes (
3639
3639
dict (type = "rect" , x0 = 0 , x1 = 1 , y0 = y0 , y1 = y1 ),
0 commit comments