rustdoc: Remove space from fake-variadic fn ptr impls#118321
rustdoc: Remove space from fake-variadic fn ptr impls#118321bors merged 1 commit intorust-lang:masterfrom
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 |
notriddle
left a comment
There was a problem hiding this comment.
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ₙ) -> Retafter:
for fn(T₁, T₂, …, Tₙ) -> RetI 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).