You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix return of negative integers with partial parser.
Previously, numbers such as `-1a` would return `Ok((1, 2))` from the
partial parser, because the wrapping, negative value wasn't handled.
This changes it to correctly return `Ok((-1, 2))`.
Closes#86.
0 commit comments