about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2016-05-21 08:14:58 -0400
committerNiko Matsakis <niko@alum.mit.edu>2016-05-31 19:44:04 -0400
commit9ef768c811fb282ba4d35f68922e05c693d231f3 (patch)
treebec6074566e84f85d0f17f6409efdd67b5bde16f
parentde6c52d5ead59349b8286d1a8a63d794af55a52f (diff)
downloadrust-9ef768c811fb282ba4d35f68922e05c693d231f3.tar.gz
rust-9ef768c811fb282ba4d35f68922e05c693d231f3.zip
add trailing comma
-rw-r--r--src/librustc/ty/structural_impls.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/ty/structural_impls.rs b/src/librustc/ty/structural_impls.rs
index 77e980ff319..1e2920ca87e 100644
--- a/src/librustc/ty/structural_impls.rs
+++ b/src/librustc/ty/structural_impls.rs
@@ -827,7 +827,7 @@ impl<'tcx> TypeFoldable<'tcx> for ty::RegionParameterDef {
             def_id: self.def_id,
             space: self.space,
             index: self.index,
-            bounds: self.bounds.fold_with(folder)
+            bounds: self.bounds.fold_with(folder),
         }
     }