Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 29089e8

Browse files
author
Tyera Eulberg
authored
Fix copypasta (#2962)
1 parent 66cf3e9 commit 29089e8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

token/program-2022/src/extension/confidential_transfer/instruction.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ pub enum ConfidentialTransferInstruction {
279279
/// 1. `[writable]` The fee receiver account. Must include the `TransferFeeAmount` and
280280
/// `ConfidentialTransferAccount` extensions.
281281
/// 2. `[]` Instructions sysvar.
282-
/// 3. `[]` The mint's `withdraw_withheld_authority`'s multisignature owner/delegate.
282+
/// 3. `[]` The mint's multisig `withdraw_withheld_authority`.
283283
/// 4. ..3+M `[signer]` M signer accounts.
284284
///
285285
/// Data expected by this instruction:
@@ -321,7 +321,7 @@ pub enum ConfidentialTransferInstruction {
321321
/// 1. `[writable]` The fee receiver account. Must include the `TransferFeeAmount` and
322322
/// `ConfidentialTransferAccount` extensions.
323323
/// 2. `[]` Instructions sysvar.
324-
/// 3. `[]` The mint's `withdraw_withheld_authority`'s multisignature owner/delegate.
324+
/// 3. `[]` The mint's multisig `withdraw_withheld_authority`.
325325
/// 4. ..4+M `[signer]` M signer accounts.
326326
/// 4+M+1. ..3+M+N `[writable]` The source accounts to withdraw from.
327327
///

token/program-2022/src/extension/transfer_fee/instruction.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ pub enum TransferFeeInstruction {
7575
/// * Multisignature owner/delegate
7676
/// 0. `[writable]` The token mint.
7777
/// 1. `[writable]` The destination account.
78-
/// 2. `[]` The mint's `withdraw_withheld_authority`'s multisignature owner/delegate.
78+
/// 2. `[]` The mint's multisig `withdraw_withheld_authority`.
7979
/// 3. ..3+M `[signer]` M signer accounts.
8080
WithdrawWithheldTokensFromMint,
8181
/// Transfer all withheld tokens to an account. Signed by the mint's
@@ -93,7 +93,7 @@ pub enum TransferFeeInstruction {
9393
/// * Multisignature owner/delegate
9494
/// 0. `[]` The token mint.
9595
/// 1. `[writable]` The destination account.
96-
/// 2. `[]` The mint's `withdraw_withheld_authority`'s multisignature owner/delegate.
96+
/// 2. `[]` The mint's multisig `withdraw_withheld_authority`.
9797
/// 3. ..3+M `[signer]` M signer accounts.
9898
/// 3+M+1. ..3+M+N `[writable]` The source accounts to withdraw from.
9999
WithdrawWithheldTokensFromAccounts {

0 commit comments

Comments
 (0)