Closed
Description
In the list of impls for a trait with type parameters, for example:
http://doc.rust-lang.org/nightly/std/convert/trait.AsRef.html#implementors
The impls currently appear like impl<T> AsRef for [T]
They should appear like impl<T> AsRef<[T]> for [T]
This is a regression from Rust 1.9 beta to Rust 1.10 nightly.