-
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
rustdoc: Remove space from fake-variadic fn ptr impls #118321
rustdoc: Remove space from fake-variadic fn ptr impls #118321
Conversation
before: `for fn (T₁, T₂, …, Tₙ) -> Ret` after: `for fn(T₁, T₂, …, Tₙ) -> Ret`
r? @m-ou-se (rustbot has picked a reviewer for you, use r? to override) |
r? rustdoc |
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.
r? @notriddle
This agrees with rustfmt, so let's go with that.
Try adding a space in fn(
, then click "Tools -> Rustfmt".
@bors r+ rollup |
…ke-variadic, r=notriddle rustdoc: Remove space from fake-variadic fn ptr impls before: `for fn (T₁, T₂, …, Tₙ) -> Ret` after: `for fn(T₁, T₂, …, Tₙ) -> Ret` I don't think we usually have spaces there, so it looks weird. cc `@notriddle` since you added the space in rust-lang#98180 (or rather, added the feature with a space included).
…llaumeGomez Rollup of 4 pull requests Successful merges: - rust-lang#118321 (rustdoc: Remove space from fake-variadic fn ptr impls) - rust-lang#118322 (skip {tidy,compiletest,rustdoc-gui} based tests for `DocTests::Only`) - rust-lang#118325 (Fix Rustdoc search docs link) - rust-lang#118327 (Add my work email to the mailmap) r? `@ghost` `@rustbot` modify labels: rollup
…llaumeGomez Rollup of 4 pull requests Successful merges: - rust-lang#118321 (rustdoc: Remove space from fake-variadic fn ptr impls) - rust-lang#118322 (skip {tidy,compiletest,rustdoc-gui} based tests for `DocTests::Only`) - rust-lang#118325 (Fix Rustdoc search docs link) - rust-lang#118327 (Add my work email to the mailmap) r? `@ghost` `@rustbot` modify labels: rollup
☀️ Test successful - checks-actions |
Finished benchmarking commit (a191610): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 674.674s -> 676.103s (0.21%) |
before:
for fn (T₁, T₂, …, Tₙ) -> Ret
after:
for fn(T₁, T₂, …, Tₙ) -> Ret
I don't think we usually have spaces there, so it looks weird.
cc @notriddle since you added the space in #98180 (or rather, added the feature with a space included).