Skip to content

Commit

Permalink
Rollup merge of #41842 - Migi:patch-1, r=eddyb
Browse files Browse the repository at this point in the history
Fix typo in subst.rs

Changed "unknwon" to "unknown".
  • Loading branch information
frewsxcv committed May 9, 2017
2 parents 2f0deec + dfd5849 commit f21209f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc/ty/subst.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 ())
}
}
}
Expand Down

0 comments on commit f21209f

Please sign in to comment.