Skip to content

Commit 38f8861

Browse files
authored
Merge branch 'master' into update-percy-tests
2 parents 3c67e99 + aef15d0 commit 38f8861

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

packages/python/plotly/plotly/express/_chart_types.py

+11-11
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def line(
258258
height=None,
259259
) -> go.Figure:
260260
"""
261-
In a 2D line plot, each row of `data_frame` is represented as vertex of
261+
In a 2D line plot, each row of `data_frame` is represented as a vertex of
262262
a polyline mark in 2D space.
263263
"""
264264
return make_figure(args=locals(), constructor=go.Scatter)
@@ -309,8 +309,8 @@ def area(
309309
) -> go.Figure:
310310
"""
311311
In a stacked area plot, each row of `data_frame` is represented as
312-
vertex of a polyline mark in 2D space. The area between successive
313-
polylines is filled.
312+
a vertex of a polyline mark in 2D space. The area between
313+
successive polylines is filled.
314314
"""
315315
return make_figure(
316316
args=locals(),
@@ -821,7 +821,7 @@ def line_3d(
821821
height=None,
822822
) -> go.Figure:
823823
"""
824-
In a 3D line plot, each row of `data_frame` is represented as vertex of
824+
In a 3D line plot, each row of `data_frame` is represented as a vertex of
825825
a polyline mark in 3D space.
826826
"""
827827
return make_figure(args=locals(), constructor=go.Scatter3d)
@@ -902,7 +902,7 @@ def line_ternary(
902902
) -> go.Figure:
903903
"""
904904
In a ternary line plot, each row of `data_frame` is represented as
905-
vertex of a polyline mark in ternary coordinates.
905+
a vertex of a polyline mark in ternary coordinates.
906906
"""
907907
return make_figure(args=locals(), constructor=go.Scatterternary)
908908

@@ -992,8 +992,8 @@ def line_polar(
992992
height=None,
993993
) -> go.Figure:
994994
"""
995-
In a polar line plot, each row of `data_frame` is represented as vertex
996-
of a polyline mark in polar coordinates.
995+
In a polar line plot, each row of `data_frame` is represented as a
996+
vertex of a polyline mark in polar coordinates.
997997
"""
998998
return make_figure(args=locals(), constructor=go.Scatterpolar)
999999

@@ -1199,7 +1199,7 @@ def line_geo(
11991199
) -> go.Figure:
12001200
"""
12011201
In a geographic line plot, each row of `data_frame` is represented as
1202-
vertex of a polyline mark on a map.
1202+
a vertex of a polyline mark on a map.
12031203
"""
12041204
return make_figure(
12051205
args=locals(),
@@ -1314,7 +1314,7 @@ def density_map(
13141314
) -> go.Figure:
13151315
"""
13161316
In a density map, each row of `data_frame` contributes to the intensity of
1317-
the color of the region around the corresponding point on the map
1317+
the color of the region around the corresponding point on the map.
13181318
"""
13191319
return make_figure(
13201320
args=locals(), constructor=go.Densitymap, trace_patch=dict(radius=radius)
@@ -1350,7 +1350,7 @@ def line_map(
13501350
) -> go.Figure:
13511351
"""
13521352
In a line map, each row of `data_frame` is represented as
1353-
vertex of a polyline mark on the map.
1353+
a vertex of a polyline mark on the map.
13541354
"""
13551355
return make_figure(args=locals(), constructor=go.Scattermap)
13561356

@@ -1497,7 +1497,7 @@ def line_mapbox(
14971497
) -> go.Figure:
14981498
"""
14991499
In a Mapbox line plot, each row of `data_frame` is represented as
1500-
vertex of a polyline mark on a Mapbox map.
1500+
a vertex of a polyline mark on a Mapbox map.
15011501
"""
15021502
return make_figure(args=locals(), constructor=go.Scattermapbox)
15031503

0 commit comments

Comments
 (0)