Skip to content

Commit 40dea30

Browse files
Fixed typo in docs
1 parent 70a5ce2 commit 40dea30

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: packages/python/plotly/plotly/basedatatypes.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -3554,7 +3554,7 @@ def add_vline(self, x, row=None, col=None, **kwargs):
35543554
first subplot if subplots exist, or the only plot.
35553555
**kwargs:
35563556
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.
35583558
"""
35593559
self._process_multiple_paper_spanning_shapes(
35603560
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):
35793579
first subplot if subplots exist, or the only plot.
35803580
**kwargs:
35813581
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.
35833583
"""
35843584
self._process_multiple_paper_spanning_shapes(
35853585
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):
36063606
first subplot if subplots exist, or the only plot.
36073607
**kwargs:
36083608
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.
36103610
"""
36113611
self._process_multiple_paper_spanning_shapes(
36123612
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):
36333633
first subplot if subplots exist, or the only plot.
36343634
**kwargs:
36353635
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.
36373637
"""
36383638
self._process_multiple_paper_spanning_shapes(
36393639
dict(type="rect", x0=0, x1=1, y0=y0, y1=y1),

0 commit comments

Comments
 (0)