Closed

Description
Stable Rust: https://doc.rust-lang.org/std/ops/trait.Deref.html#tymethod.deref
Nightly Rust: https://doc.rust-lang.org/nightly/std/ops/trait.Deref.html#tymethod.deref
The docs on stable look better than on nightly.
The problem with nightly is that all these impls written one after another look rather messy.
A few ideas that might help:
- Add some spacing between consecutive impls.
- Place each impl entirely into a single line (don't place each where clause into a separate line).
- Place
where
and all following clauses into a dedicate line. This is what the stable docs do.
As a side node, the indentation of two spaces in the stable docs looks odd: 4 spaces would look better.