We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The problem passed to float handler for numbers parser is not used, instead the generic invalid problem is used. In other words these lines:
invalid
case floatSettings of Err x -> Bad True (fromState s invalid)
Should probably look like this:
case floatSettings of Err x -> Bad True (fromState s x) -- note the `x` instead of `invalid`
The text was updated successfully, but these errors were encountered:
finalizeFloat
No branches or pull requests
The problem passed to float handler for numbers parser is not used, instead the generic
invalid
problem is used. In other words these lines:Should probably look like this:
The text was updated successfully, but these errors were encountered: