From 37189f20c521809e9b8e20ca39ad62df1a9a4a81 Mon Sep 17 00:00:00 2001 From: sethgirvan Date: Wed, 9 Mar 2022 21:03:02 -0800 Subject: [PATCH] Fix error message typo (#23574) --- sdk/program/src/pubkey.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/program/src/pubkey.rs b/sdk/program/src/pubkey.rs index 35a6a25eb3..a9220a7ad4 100644 --- a/sdk/program/src/pubkey.rs +++ b/sdk/program/src/pubkey.rs @@ -82,7 +82,7 @@ pub enum ParsePubkeyError { impl From for ParsePubkeyError { fn from(_: Infallible) -> Self { - unreachable!("Infallible unihnabited"); + unreachable!("Infallible uninhabited"); } }