From 0a5e9524857f2bfd3e07b65e669ad8fa8836a9cb Mon Sep 17 00:00:00 2001 From: Colin Ogoo Date: Mon, 18 Oct 2021 20:36:15 +0100 Subject: [PATCH] fix: typo in comments fix minimal typo in comment --- examples/rust/transfer-lamports/src/processor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/rust/transfer-lamports/src/processor.rs b/examples/rust/transfer-lamports/src/processor.rs index c509c433d17..33aa39f5ad9 100644 --- a/examples/rust/transfer-lamports/src/processor.rs +++ b/examples/rust/transfer-lamports/src/processor.rs @@ -12,7 +12,7 @@ pub fn process_instruction( accounts: &[AccountInfo], _instruction_data: &[u8], ) -> ProgramResult { - // Create in iterator to safety reference accounts in the slice + // Create an iterator to safely reference accounts in the slice let account_info_iter = &mut accounts.iter(); // As part of the program specification the first account is the source