From dfd584997bb789f27204d61e34a84e7ea1a1aa1f Mon Sep 17 00:00:00 2001 From: Migi Date: Tue, 9 May 2017 01:32:46 +0200 Subject: [PATCH] Fix typo in subst.rs --- src/librustc/ty/subst.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc/ty/subst.rs b/src/librustc/ty/subst.rs index c9ffcee51c20a..e23003bf772f2 100644 --- a/src/librustc/ty/subst.rs +++ b/src/librustc/ty/subst.rs @@ -102,7 +102,7 @@ impl<'tcx> fmt::Debug for Kind<'tcx> { } else if let Some(r) = self.as_region() { write!(f, "{:?}", r) } else { - write!(f, "", self.ptr.get() as *const ()) + write!(f, "", self.ptr.get() as *const ()) } } }