diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-05-08 22:34:53 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-08 22:34:53 -0400 |
| commit | f21209f442ef29f2d77464d2ba37dcec154fbfe2 (patch) | |
| tree | 78b0129c76c87b9ef98d7b7f83a77083a073720a /src | |
| parent | 2f0deec98bf360af18bead78b2d8092ba4aa6c50 (diff) | |
| parent | dfd584997bb789f27204d61e34a84e7ea1a1aa1f (diff) | |
| download | rust-f21209f442ef29f2d77464d2ba37dcec154fbfe2.tar.gz rust-f21209f442ef29f2d77464d2ba37dcec154fbfe2.zip | |
Rollup merge of #41842 - Migi:patch-1, r=eddyb
Fix typo in subst.rs Changed "unknwon" to "unknown".
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc/ty/subst.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/ty/subst.rs b/src/librustc/ty/subst.rs index c9ffcee51c2..e23003bf772 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, "<unknwon @ {:p}>", self.ptr.get() as *const ()) + write!(f, "<unknown @ {:p}>", self.ptr.get() as *const ()) } } } |
