From d6082d0c816ad5753470664bd09a8889e0067dd0 Mon Sep 17 00:00:00 2001 From: Ricardo Guilherme Schmidt <3esmit@gmail.com> Date: Mon, 11 May 2026 18:03:13 -0300 Subject: [PATCH] docs(stablecoin): improve documentation for OpenPosition instruction --- stablecoin/core/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stablecoin/core/src/lib.rs b/stablecoin/core/src/lib.rs index 35be9e3..a96b53c 100644 --- a/stablecoin/core/src/lib.rs +++ b/stablecoin/core/src/lib.rs @@ -28,9 +28,9 @@ pub enum Instruction { /// - Position vault token holding account (uninitialized, address must match /// `compute_position_vault_pda(stablecoin_program_id, position_id)`) /// - Owner's source token holding for the collateral (authorized, initialized) - /// - Token definition account for the collateral (matches the user holding's - /// `definition_id`; its `program_owner` determines the Token Program used by the - /// chained `InitializeAccount` / `Transfer` calls) + /// - Token definition account for the collateral (matches the user holding's `definition_id`; + /// its `program_owner` determines the Token Program used by the chained `InitializeAccount` + /// / `Transfer` calls) OpenPosition { /// `ProgramId` under which the [`Position`] and vault PDAs are derived. stablecoin_program_id: ProgramId,