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
A number of expressions are aligned with an opening parenthesis rather than with the code inside the parenthesis. Examples:
let x =
f
(if some_condition_______________________
then consequence________________________
else alternative________________________)
;;
let x =
f
("A string _____________________"
^ "Another string _____________"
^ "Yet another string _________")
;;
In the first case, we would prefer the then and else to be aligned with the if. In the second case, we would prefer the ^ operators to be aligned with the opening "A string.
The text was updated successfully, but these errors were encountered:
I confirm this was fixed by #2203 and #2204, the output looks like that:
let x =
f
(if some_condition_______________________
then consequence________________________
else alternative________________________)
;;
let x =
f
("A string _____________________"^"Another string _____________"^"Yet another string _________")
;;
A number of expressions are aligned with an opening parenthesis rather than with the code inside the parenthesis. Examples:
In the first case, we would prefer the
then
andelse
to be aligned with theif
. In the second case, we would prefer the^
operators to be aligned with the opening"A string
.The text was updated successfully, but these errors were encountered: