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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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