This commit is contained in:
ConnorSkees 2020-05-22 13:48:00 -04:00
commit 0d52a1926e

View File

@ -50,6 +50,6 @@ impl InternedString {
impl Display for InternedString {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.resolve())
STRINGS.with(|interner| write!(f, "{}", interner.borrow().resolve(&self.0)))
}
}