-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Update doc for PhantomData
to match code example
#102673
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
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
850e87b
to
2262157
Compare
☔ The latest upstream changes (presumably #102991) made this pull request unmergeable. Please resolve the merge conflicts. |
2262157
to
8379716
Compare
☔ The latest upstream changes (presumably #106209) made this pull request unmergeable. Please resolve the merge conflicts. |
8379716
to
c67a673
Compare
☔ The latest upstream changes (presumably #106228) made this pull request unmergeable. Please resolve the merge conflicts. |
c67a673
to
1222342
Compare
☔ The latest upstream changes (presumably #106324) made this pull request unmergeable. Please resolve the merge conflicts. |
1222342
to
1dcb6d0
Compare
☔ The latest upstream changes (presumably #106833) made this pull request unmergeable. Please resolve the merge conflicts. |
@lukas-code src/test ->tests |
1dcb6d0
to
3480dba
Compare
☔ The latest upstream changes (presumably #106253) made this pull request unmergeable. Please resolve the merge conflicts. |
Hello @lukas-code! I noticed this PR has some merge conflicts, what's the status of it? |
This has bitrotted pretty hard and will probably be a pain to rebase. The main motivation for this PR is this documentation fix: 82de260230f93af5806440ab305e18e07bfdb0c8, which is pretty small. The rest is just updating I can rebase to only keep 82de260230f93af5806440ab305e18e07bfdb0c8 (and optionally 421a151f3fe478d092146cee7c94d1eb2cd04386), which will reduce bitrot and make this easy to review. |
Sounds like a good idea! |
3480dba
to
3d02aa8
Compare
PhantomData
to match code example
Thanks! @bors r+ rollup |
Update doc for `PhantomData` to match code example After rust-lang#106621, there is no longer a `T: 'a` annotation in the doc example, so update the text to match the code.
…iaskrgr Rollup of 8 pull requests Successful merges: - rust-lang#102673 (Update doc for `PhantomData` to match code example) - rust-lang#111531 (Fix ice caused by shorthand fields in NoFieldsForFnCall) - rust-lang#111547 (Start node has no immediate dominator) - rust-lang#111548 (add util function to TokenStream to eliminate some clones) - rust-lang#111560 (Simplify find_width_of_character_at_span.) - rust-lang#111569 (Appease lints) - rust-lang#111581 (Fix some misleading and copy-pasted `Pattern` examples) - rust-lang#111582 ((docs) Change "wanting" to "want") Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
After #106621, there is no longer a
T: 'a
annotation in the doc example, so update the text to match the code.