Skip to content

Commit

Permalink
remove solana-program from doc examples
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Aug 3, 2024
1 parent 88a93c6 commit 25c3df7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sdk/account-info/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,10 @@ impl<'a, T: Account> IntoAccountInfo<'a> for &'a mut (Pubkey, T) {
/// # Examples
///
/// ```
/// use solana_program::entrypoint::ProgramResult;
/// use solana_program_error::ProgramResult;
/// use solana_account_info::{AccountInfo, next_account_info};
/// use solana_pubkey::Pubkey;
/// # use solana_program::program_error::ProgramError;
/// # use solana_program_error::ProgramError;
///
/// pub fn process_instruction(
/// program_id: &Pubkey,
Expand Down Expand Up @@ -350,10 +350,10 @@ pub fn next_account_info<'a, 'b, I: Iterator<Item = &'a AccountInfo<'b>>>(
/// # Examples
///
/// ```
/// use solana_program::entrypoint::ProgramResult;
/// use solana_program_error::ProgramResult;
/// use solana_account_info::{AccountInfo, next_account_info, next_account_infos};
/// use solana_pubkey::Pubkey;
/// # use solana_program::program_error::ProgramError;
/// # use solana_program_error::ProgramError;
///
/// pub fn process_instruction(
/// program_id: &Pubkey,
Expand Down

0 comments on commit 25c3df7

Please sign in to comment.