Skip to content

Commit ab5dcff

Browse files
authored
Format comment in a nicer way.
Just kidding I'm doing this only to unstuck @bors/homu/buildbot.
1 parent 1e4241a commit ab5dcff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc/ty/subst.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,8 @@ impl<'tcx> TypeFoldable<'tcx> for &'tcx Substs<'tcx> {
306306
fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self {
307307
let params: Vec<_> = self.iter().map(|k| k.fold_with(folder)).collect();
308308

309-
// If folding doesn't change the substs, it's faster to avoid calling
310-
// `mk_substs` and instead reuse the existing substs.
309+
// If folding doesn't change the substs, it's faster to avoid
310+
// calling `mk_substs` and instead reuse the existing substs.
311311
if params[..] == self[..] {
312312
self
313313
} else {

0 commit comments

Comments
 (0)