Skip to content

Commit

Permalink
Remove errroneous comma in SVG path
Browse files Browse the repository at this point in the history
This is only a minor mistake, but slightly misleading because for a moment I thought this example showed how to draw only some but not all edges.
  • Loading branch information
SeanMcCarren authored May 25, 2022
1 parent 589c901 commit 642c15a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/python/shapes.md
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ fig.update_layout(
# filled Polygon
dict(
type="path",
path=" M 3,7 L2,8 L2,9 L3,10, L4,10 L5,9 L5,8 L4,7 Z",
path=" M 3,7 L2,8 L2,9 L3,10 L4,10 L5,9 L5,8 L4,7 Z",
fillcolor="PaleTurquoise",
line_color="LightSeaGreen",
),
Expand Down

0 comments on commit 642c15a

Please sign in to comment.