rustdoc: Remove space from fake-variadic fn ptr impls
before: `for fn (T₁, T₂, …, Tₙ) -> Ret` after: `for fn(T₁, T₂, …, Tₙ) -> Ret`
This commit is contained in:
parent
274b5249eb
commit
1a3c5c40ca
2 changed files with 2 additions and 2 deletions
|
|
@ -1305,7 +1305,7 @@ impl clean::Impl {
|
|||
primitive_link_fragment(
|
||||
f,
|
||||
PrimitiveType::Tuple,
|
||||
format_args!("fn ({name}₁, {name}₂, …, {name}ₙ{ellipsis})"),
|
||||
format_args!("fn({name}₁, {name}₂, …, {name}ₙ{ellipsis})"),
|
||||
"#trait-implementations-1",
|
||||
cx,
|
||||
)?;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue