From be630a5213d97bffb876176da97b737662b5d216 Mon Sep 17 00:00:00 2001 From: HaoranYi Date: Mon, 23 May 2022 13:42:43 -0500 Subject: [PATCH] typo (#25479) --- sdk/program/src/program_error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/program/src/program_error.rs b/sdk/program/src/program_error.rs index d0e7e7643b..f8a01ec072 100644 --- a/sdk/program/src/program_error.rs +++ b/sdk/program/src/program_error.rs @@ -129,7 +129,7 @@ pub const MAX_ACCOUNTS_DATA_SIZE_EXCEEDED: u64 = to_builtin!(19); pub const ACTIVE_VOTE_ACCOUNT_CLOSE: u64 = to_builtin!(20); // Warning: Any new program errors added here must also be: // - Added to the below conversions -// - Added as an equivilent to InstructionError +// - Added as an equivalent to InstructionError // - Be featureized in the BPF loader to return `InstructionError::InvalidError` // until the feature is activated