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
In Topiary 0.6.0, the following formatting was used:
let attrs =
let xmlns_attrs = List.map render_xmlns_prefix prefixes_to_add in
attrs @ xmlns_attrs
in
[P.std_tag name attrs content]
In Topiary 0.6.1, this has turned to the following, which I consider undesirable:
let attrs =
let xmlns_attrs = List.map render_xmlns_prefix prefixes_to_add in
attrs @ xmlns_attrs
in
[P.std_tag name attrs content]
I believe that this the circumstances under which this occurs at the following: when both the definiens of the let-binding is multi-line, and in is not followed by another let.
The text was updated successfully, but these errors were encountered:
In Topiary 0.6.0, the following formatting was used:
In Topiary 0.6.1, this has turned to the following, which I consider undesirable:
I believe that this the circumstances under which this occurs at the following: when both the definiens of the let-binding is multi-line, and
in
is not followed by anotherlet
.The text was updated successfully, but these errors were encountered: