-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
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
Documentation text on trait impl methods is hidden in docs #24838
Comments
Note: Documentation on top of the |
Just for reference: this also leaves the (perhaps not entirely obvious) operator impls on HashSets undocumented. Also see this SO question on this issue. |
Yes, #27058 is dup of this. It is hiding stable parts of std from me: https://doc.rust-lang.org/1.1.0/src/core/result.rs.html#883-890 |
Add test to check this resolves rust-lang#24838 and rust-lang#26871.
…s, r=alexcrichton Restore trait impl docs Currently, documentation on methods in trait implementations doesn't get rendered. This changes that; trait implementations have all documentation associated with impl items displayed (documentation from the trait definition is ignored). Fixes rust-lang#24838 Fixes rust-lang#26871
I use documentation on my trait impls to tell users about how my types behave:
This documentation is not rendered anymore. I expect to see it under the entry for the
Index
implementation of theGraph
type.I think this was lost after (the otherwise very awesome!) documentation changes by @alexcrichton
The text was updated successfully, but these errors were encountered: