Fix typo in subst.rs

This commit is contained in:
Migi 2017-05-09 01:32:46 +02:00 committed by GitHub
parent 20de961226
commit dfd584997b

View File

@ -102,7 +102,7 @@ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
} 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 ())
}
}
}