]> git.lizzy.rs Git - rust.git/commitdiff
add trailing comma
authorNiko Matsakis <niko@alum.mit.edu>
Sat, 21 May 2016 12:14:58 +0000 (08:14 -0400)
committerNiko Matsakis <niko@alum.mit.edu>
Tue, 31 May 2016 23:44:04 +0000 (19:44 -0400)
src/librustc/ty/structural_impls.rs

index 77e980ff3196520c05600cf42bcf5245c56c7e6e..1e2920ca87ea6d712b3a2f64839160f1fcc7a542 100644 (file)
@@ -827,7 +827,7 @@ fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F)
             def_id: self.def_id,
             space: self.space,
             index: self.index,
-            bounds: self.bounds.fold_with(folder)
+            bounds: self.bounds.fold_with(folder),
         }
     }