We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 552bf75 commit ad5ab2fCopy full SHA for ad5ab2f
src/librustdoc/html/format.rs
@@ -460,7 +460,7 @@ impl fmt::Display for clean::Type {
460
[] => primitive_link(f, clean::PrimitiveTuple, "()"),
461
[ref one] => {
462
try!(primitive_link(f, clean::PrimitiveTuple, "("));
463
- try!(write!(f, "{}", one));
+ try!(write!(f, "{},", one));
464
primitive_link(f, clean::PrimitiveTuple, ")")
465
}
466
many => {
0 commit comments