[svgwg] [Paths/Grammar] Number grammer does not include point for floating-point integers (#815)

coastalwhite has just created a new issue for https://github.com/w3c/svgwg:

== [Paths/Grammar] Number grammer does not include point for floating-point integers ==
This issue concerns a wrong grammar definition in `specs/paths/master/Overview.html` in the section on *The grammar for path data*. The link to which can be found [here](https://www.w3.org/TR/SVG/paths.html#PathDataBNF).

One will find the grammar definition for a *number* given as:
```
number ::= ([0-9])+
```
This is a fault because it does not include floating-point integers.

Probably this should be:
```
number ::= ( ([0-9])+ | ([0-9])+ "." | ([0-9])+ "." ([0-9])+ )
```

Please view or discuss this issue at https://github.com/w3c/svgwg/issues/815 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Sunday, 22 November 2020 23:04:32 UTC