realworldocaml / examples

All the examples in Real World OCaml
The Unlicense
376 stars 81 forks source link

*Nitpick*: ['0'-'9'] ['0'-'9']* => ['0'-'9']+ #31

Open keleshev opened 9 years ago

keleshev commented 9 years ago

The int regular expression is probably better written as ['0'-'9']+ rather than ['0'-'9'] ['0'-'9']*.