Uh oh!
There was an error while loading. Please reload this page.
rustdoc: add [src] links to associated functions inside an impl block - #43509
Merged
Conversation
rust-highfive
commented
Jul 27, 2017
Contributor
Some changes occurred in HTML/CSS. |
rust-highfive
commented
Jul 27, 2017
Contributor
(rust_highfive has picked a reviewer for you, use r? to override) |
QuietMisdreavus
commented
Jul 27, 2017
ContributorAuthor
I've got a rendering of the libstd docs in case you want to preview this yourself. |
GuillaumeGomez
commented
Jul 27, 2017
Member
Awesome, thanks! @bors: r+ |
bors
commented
Jul 27, 2017
Collaborator
📌 Commit c9bdd51 has been approved by |
Mark-Simulacrum
commented
Jul 28, 2017
Member
@bors rollup |
frewsxcv added a commit
to frewsxcv/rust
that referenced
this pull request
Jul 29, 2017
…aumeGomez rustdoc: add [src] links to associated functions inside an impl block While impl blocks currently have a `[src]` link to show the source for the impl block as a whole, individual methods inside that impl block do not. This can pose a problem for structs with a lot of methods, like many in libstd. This change adds little `[src]` links to individual methods that point directly to the function in the bundled source. fixesrust-lang#12932 
GuillaumeGomez
self-requested a review
July 29, 2017 14:21
Mark-Simulacrum added a commit
to Mark-Simulacrum/rust
that referenced
this pull request
Jul 30, 2017
…aumeGomez rustdoc: add [src] links to associated functions inside an impl block While impl blocks currently have a `[src]` link to show the source for the impl block as a whole, individual methods inside that impl block do not. This can pose a problem for structs with a lot of methods, like many in libstd. This change adds little `[src]` links to individual methods that point directly to the function in the bundled source. fixesrust-lang#12932 
bors added a commit
that referenced
this pull request
Jul 30, 2017
kennytm
commented
Jul 31, 2017
Member
@bors p=-2 (unblock bors) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
While impl blocks currently have a
[src]link to show the source for the impl block as a whole, individual methods inside that impl block do not. This can pose a problem for structs with a lot of methods, like many in libstd. This change adds little[src]links to individual methods that point directly to the function in the bundled source.fixes#12932