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
`rustfmt` loves to make expressions vertical by putting each method
parameter or `.` subexpression on its own line. In cases where each
method parameter or `.` subexpression is actually doing something,
this can be fine, but in some cases we have a few method parameters
that are straightforward and shouldn't be the readers focus, mixed
with one or two parameters which are key or a few subexpressions
which simply do rote variable indexing or locking.
Here we clean up various `rustfmt` verticality that exposes
unimportant details of tests and test utils, making it easier for
the reader to skim past them by introducing additional variables.
0 commit comments