From 642c15a9350538dc4d92ffe7002ab2f39f599171 Mon Sep 17 00:00:00 2001 From: SeanMcCarren Date: Wed, 25 May 2022 09:48:37 +0200 Subject: [PATCH] Remove errroneous comma in SVG path 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. --- doc/python/shapes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/python/shapes.md b/doc/python/shapes.md index 7b10116489e..bb72c854193 100644 --- a/doc/python/shapes.md +++ b/doc/python/shapes.md @@ -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", ),