Fix incorrectly spelled "variadic"
This commit is contained in:
parent
9f6dcceef0
commit
9b31323b8f
14 changed files with 23 additions and 23 deletions
|
@ -1076,7 +1076,7 @@ impl clean::Impl {
|
|||
|
||||
if let clean::Type::Tuple(types) = &self.for_ &&
|
||||
let [clean::Type::Generic(name)] = &types[..] &&
|
||||
(self.kind.is_tuple_varadic() || self.kind.is_auto()) {
|
||||
(self.kind.is_tuple_variadic() || self.kind.is_auto()) {
|
||||
primitive_link_fragment(f, PrimitiveType::Tuple, &format!("({name}, ...)"), "#trait-implementations-1", cx)?;
|
||||
} else if let Some(ty) = self.kind.as_blanket_ty() {
|
||||
fmt_type(ty, f, use_absolute, cx)?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue