Skip to content

Commit addf30e

Browse files
committed
Fix spelling
1 parent bb588af commit addf30e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

programs/system/src/instructions/allocate_with_seed.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub struct AllocateWithSeed<'a, 'b, 'c> {
2323
/// as account 0.
2424
pub base: &'a AccountInfo,
2525

26-
/// String of ASCII chars, no longer than [MAX_SEED_LEN](https://docs.rs/solana-address/latest/solana_address/constant.MAX_SEED_LEN.html).
26+
/// String of ASCII chars, no longer than [`MAX_SEED_LEN`](https://docs.rs/solana-address/latest/solana_address/constant.MAX_SEED_LEN.html).
2727
pub seed: &'b str,
2828

2929
/// Number of bytes of memory to allocate.

programs/system/src/instructions/assign_with_seed.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pub struct AssignWithSeed<'a, 'b, 'c> {
2222
/// as account 0.
2323
pub base: &'a AccountInfo,
2424

25-
/// String of ASCII chars, no longer than [MAX_SEED_LEN](https://docs.rs/solana-address/latest/solana_address/constant.MAX_SEED_LEN.html).
25+
/// String of ASCII chars, no longer than [`MAX_SEED_LEN`](https://docs.rs/solana-address/latest/solana_address/constant.MAX_SEED_LEN.html).
2626
pub seed: &'b str,
2727

2828
/// Address of program that will own the new account.

programs/system/src/instructions/create_account_with_seed.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub struct CreateAccountWithSeed<'a, 'b, 'c> {
2929
/// as account 0.
3030
pub base: Option<&'a AccountInfo>,
3131

32-
/// String of ASCII chars, no longer than [MAX_SEED_LEN](https://docs.rs/solana-address/latest/solana_address/constant.MAX_SEED_LEN.html).
32+
/// String of ASCII chars, no longer than [`MAX_SEED_LEN`](https://docs.rs/solana-address/latest/solana_address/constant.MAX_SEED_LEN.html).
3333
pub seed: &'b str,
3434

3535
/// Number of lamports to transfer to the new account.

programs/system/src/instructions/transfer_with_seed.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub struct TransferWithSeed<'a, 'b, 'c> {
2929
/// Amount of lamports to transfer.
3030
pub lamports: u64,
3131

32-
/// String of ASCII chars, no longer than [MAX_SEED_LEN](https://docs.rs/solana-address/latest/solana_address/constant.MAX_SEED_LEN.html).
32+
/// String of ASCII chars, no longer than [`MAX_SEED_LEN`](https://docs.rs/solana-address/latest/solana_address/constant.MAX_SEED_LEN.html).
3333
pub seed: &'b str,
3434

3535
/// Address of program that will own the new account.

0 commit comments

Comments
 (0)