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
try
If an infix extension is added to a try, the expression is indented by 6 spaces instead of 2:
let _ = try%lwt 1 with _ -> 2
A try without an extension works:
let _ = try 1 with _ -> 2
IMHO the try%lwt should be indented like that:
try%lwt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If an infix extension is added to a
try
, the expression is indented by 6 spaces instead of 2:A
try
without an extension works:IMHO the
try%lwt
should be indented like that:try
is defined here: https://ocaml.org/releases/4.11/htmlman/expr.htmlThe text was updated successfully, but these errors were encountered: