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
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]
impl<T> AsRef for [T]
They should appear like impl<T> AsRef<[T]> for [T]
impl<T> AsRef<[T]> for [T]
This is a regression from Rust 1.9 beta to Rust 1.10 nightly.
The text was updated successfully, but these errors were encountered:
cc @mitaa, ring any bells?
Sorry, something went wrong.
It was caused by #32558, I'm working on a fix.
Thanks @ollie27!
Rollup merge of rust-lang#33600 - ollie27:rustdoc_impl_params, r=alex…
f657a30
…crichton rustdoc: Fix missing type parameters on impls They were broken by rust-lang#32558. Fixes: rust-lang#33592
Auto merge of #33600 - ollie27:rustdoc_impl_params, r=alexcrichton
dd0ef17
rustdoc: Fix missing type parameters on impls They were broken by #32558. Fixes: #33592
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: