From ec7b1c8bdad3974cda710c76ad5be583668ca161 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Tu=C5=A1la?= Date: Sun, 5 Mar 2023 22:46:00 +0100 Subject: [PATCH] Fix typo: where -> were (#30599) --- 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 a3b3febf30..4846eee50e 100644 --- a/sdk/program/src/program_error.rs +++ b/sdk/program/src/program_error.rs @@ -17,7 +17,7 @@ pub enum ProgramError { /// or serialized to a u32 integer. #[error("Custom program error: {0:#x}")] Custom(u32), - #[error("The arguments provided to a program instruction where invalid")] + #[error("The arguments provided to a program instruction were invalid")] InvalidArgument, #[error("An instruction's data contents was invalid")] InvalidInstructionData,