elm / parser

A parsing library, focused on simplicity and great error messages
https://package.elm-lang.org/packages/elm/parser/latest
BSD 3-Clause "New" or "Revised" License
228 stars 46 forks source link

Documentation for `int` shows succeeding examples as failing #18

Open okkero opened 5 years ago

okkero commented 5 years ago

The documentation for Parser.int claims that it fails for the strings "0123" and "123a", however when I run those strings through Parser.int, I get Ok 0 and Ok 123 respectively.

Here is an ellie showcasing the behaviour: https://ellie-app.com/3Kq5dZ5ZBzFa1

I am not sure if this is intended behaviour or not, but at any rate there is a mismatch between documentation and behaviour.