-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Documentation text on trait impl methods is hidden in docs #24838
Labels
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
Comments
Note: Documentation on top of the |
bluss
pushed a commit
to petgraph/petgraph
that referenced
this issue
Apr 26, 2015
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 |
pierzchalski
added a commit
to pierzchalski/rust
that referenced
this issue
Apr 14, 2016
Add test to check this resolves rust-lang#24838 and rust-lang#26871.
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Apr 15, 2016
…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
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
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: