Cleaned up a few panic!()s

This commit is contained in:
2023-07-28 09:36:25 -07:00
parent 8fef5702b4
commit be043af4f0
7 changed files with 14 additions and 14 deletions

View File

@ -52,7 +52,7 @@ impl ToString for Unit {
'7' => '⁷',
'8' => '⁸',
'9' => '⁹',
_ => panic!()
_ => unreachable!()
});
}
t.push('·');
@ -90,7 +90,7 @@ impl ToString for Unit {
'7' => '⁷',
'8' => '⁸',
'9' => '⁹',
_ => panic!()
_ => unreachable!()
});
}
b.push('·');