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
As of f35eee4, Topiary formats:
type t = ( int, float, string ) foo
as:
type t = (int, float, string) foo
The multi-line-ness of the type arguments is completely forgotten. When the type arguments are big, this can make for a nasty surprise, eg.
I'm not super happy with my snippet, so that might not be how things should look. But at least they shouldn't look as Topiary makes them look now!
To reproduce:
$ nix run github:tweag/topiary/f35eee4 -- format -l ocaml <<EOF type t = ( int, float, string ) foo EOF
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As of f35eee4, Topiary formats:
as:
The multi-line-ness of the type arguments is completely forgotten. When the type arguments are big, this can make for a nasty surprise, eg.
I'm not super happy with my snippet, so that might not be how things should look. But at least they shouldn't look as Topiary makes them look now!
To reproduce:
The text was updated successfully, but these errors were encountered: