rustdoc: Add missing trailing comma for single element tuples
This commit is contained in:
parent
552bf75e7d
commit
ad5ab2f360
1 changed files with 1 additions and 1 deletions
|
@ -460,7 +460,7 @@ impl fmt::Display for clean::Type {
|
|||
[] => primitive_link(f, clean::PrimitiveTuple, "()"),
|
||||
[ref one] => {
|
||||
try!(primitive_link(f, clean::PrimitiveTuple, "("));
|
||||
try!(write!(f, "{}", one));
|
||||
try!(write!(f, "{},", one));
|
||||
primitive_link(f, clean::PrimitiveTuple, ")")
|
||||
}
|
||||
many => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue