tc39 / proposal-extended-numeric-literals

Extensible numeric literals for JavaScript
https://tc39.github.io/proposal-extended-numeric-literals/
72 stars 18 forks source link

docs(readme): Fix typo #19

Closed ExE-Boss closed 5 years ago

ExE-Boss commented 5 years ago

This corrects:

numeric__px(Object.freeze({number: 3, string, "3"}))
//                                          ^

to

numeric__px(Object.freeze({number: 3, string: "3"}))
//                                          ^

Turns out, this isn’t the first time this has happened: https://github.com/tc39/proposal-extended-numeric-literals/pull/10 🤦🏻‍♂️

littledan commented 5 years ago

Thanks!