Fix error message typo (#23574)

This commit is contained in:
sethgirvan
2022-03-09 21:03:02 -08:00
committed by GitHub
parent 588414a776
commit 37189f20c5

View File

@ -82,7 +82,7 @@ pub enum ParsePubkeyError {
impl From<Infallible> for ParsePubkeyError {
fn from(_: Infallible) -> Self {
unreachable!("Infallible unihnabited");
unreachable!("Infallible uninhabited");
}
}