-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Doc: Extend for tuples to be stabilized in 1.85.0 #134022
Doc: Extend for tuples to be stabilized in 1.85.0 #134022
Conversation
It was supposed to be |
Oh, ooops. Now it makes more sense why I found only a single occurence of RUSTC_CURRENT_VERSION after the merge. Should I leave this PR as is or should I change it to CURRENT_RUSTC_VERSION? |
Since #132187 is destined for 1.85 which is the current nightly, you can just change it to |
238775d
to
bfd2bc3
Compare
Hope it's OK now :) |
#[doc = "This trait is implemented for tuples up to twelve items long. The `impl`s for\ | ||
1- and 3- through 12-ary tuples were stabilized after 2-tuples, in\ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All whitespace after \
gets stripped so these need a space before \
, otherwise it gets smooshed together ("impl
s for1- and 3-" and "2-tuples, inCURRENT_RUSTC_VERSION.")
Significantly, thanks :) Two more nits above then lgtm. |
Also - I appreciate the credit (certainly not needed, minor suggestions are usually without attribution requirements) but small request, could you drop the GH username from the commit message? We found out the hard way that github is pretty overzealous with notifications otherwise and will ping every time somebody applies this commit to a fork 😆 |
bfd2bc3
to
cdb72a2
Compare
I mixed it up with RUSTC_CURRENT_VERSION unfortunately. Also improve the formatting of the macro invocation slightly.
cdb72a2
to
7717df2
Compare
Oh ouch, that's annoying about the notifications. I did not mean to spam you of course, dropped the username. And thanks for the fast review! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No worries, it's GitHub's problem not yours :) Thanks for the changes!
@bors r+ rollup |
…iaskrgr Rollup of 7 pull requests Successful merges: - rust-lang#132939 (Suggest using deref in patterns) - rust-lang#133293 (Updates Solaris target information, adds Solaris maintainer) - rust-lang#133392 (Fix ICE when multiple supertrait substitutions need assoc but only one is provided) - rust-lang#133986 (Add documentation for anonymous pipe module) - rust-lang#134022 (Doc: Extend for tuples to be stabilized in 1.85.0) - rust-lang#134259 (Clean up `infer_return_ty_for_fn_sig`) - rust-lang#134264 (Arbitrary self types v2: Weak & NonNull diagnostics) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#134022 - shahn:doc_clarify_extend_for_tuple_version, r=tgross35 Doc: Extend for tuples to be stabilized in 1.85.0 I assumed the RUSTC_CURRENT_VERSION would be replaced automatically, but it doesn't look like it on the nightly docs page. Sorry!
I assumed the RUSTC_CURRENT_VERSION would be replaced automatically, but it doesn't look like it on the nightly docs page. Sorry!