Found mistake in SVG Primer

Ian Ryan <[email protected]> Wed, 30 Dec 2015 01:29:22 +0000
Newsgroups gmane.comp.web.svg
Message-ID <CAPsr5VCVs-xj5Ocg0BKcZ=COuK1hCPoOKEaFb1Mru2X+8cdvBA@mail.gmail.com>
Under http://www.w3.org/Graphics/SVG/IG/resources/svgprimer.html#examples, in
the 'zigzag' example that looks like a 'W', the code is incorrect.

the 'd' attribute of 'path' reads

d="M 100 200 L 200 300, 300 20,0 400 300, 500 200"

but should be

d="M 100 200 L 200 300, 300 200, 400 300, 500 200"

Regards,
Ian