Skip to content

Commit ea44da2

Browse files
authored
docs: fix typos (#3818)
1 parent 494d0d0 commit ea44da2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/auction-house/tests/auction-house.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ describe("auction-house", () => {
4343
const wallet = getProvider().wallet as Wallet;
4444

4545
// Clients.
46-
let authorityClient: Program<AuctionHouse>; // Reprents the exchange authority.
46+
let authorityClient: Program<AuctionHouse>; // Represents the exchange authority.
4747
let sellerClient: Program<AuctionHouse>; // Represents the seller.
4848
let buyerClient: Program<AuctionHouse>; // Represents the buyer.
4949
let nftMintClient: Token; // Represents the NFT to be traded.

tests/cfo/programs/cfo/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ pub struct DropStakeRewardPool<'info> {
669669
/// PDA - [dex_program_id].
670670
#[account]
671671
pub struct Officer {
672-
// Priviledged account.
672+
// Privileged account.
673673
pub authority: Pubkey, // 32
674674
// Vault holding the officer's SRM tokens prior to distribution.
675675
pub srm_vault: Pubkey, // 32

tests/lockup/programs/lockup/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ pub mod lockup {
154154
return err!(ErrorCode::WhitelistWithdrawLimit);
155155
}
156156

157-
// Bookeeping.
157+
// Bookkeeping.
158158
ctx.accounts.transfer.vesting.whitelist_owned += withdraw_amount;
159159

160160
Ok(())

0 commit comments

Comments
 (0)