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
If you write a Dante eval block above a legitimate comment and then evaluate it, the legit comment will be overwritten:
-- >>> foo 5 -- | Best function foo :: Int -> String foo = show
becomes
-- >>> foo 5 -- "5" foo :: Int -> String foo = show
whereas I expected:
-- >>> foo 5 -- "5" -- | Best function foo :: Int -> String foo = show
The text was updated successfully, but these errors were encountered:
You should use a blank line to separate the eval block from the next comment.
Sorry, something went wrong.
Ok thanks, I'll keep that in mind.
No branches or pull requests
If you write a Dante eval block above a legitimate comment and then evaluate it, the legit comment will be overwritten:
becomes
whereas I expected:
The text was updated successfully, but these errors were encountered: