diff --git a/x/programs/rust/examples/token/src/lib.rs b/x/programs/rust/examples/token/src/lib.rs index 50ae8c5b4d..4673099213 100644 --- a/x/programs/rust/examples/token/src/lib.rs +++ b/x/programs/rust/examples/token/src/lib.rs @@ -79,7 +79,7 @@ pub fn burn_from(context: Context, recipient: Address) -> i64 { .expect("recipient balance not found") } -/// Transfers balance from the sender to the the recipient. +/// Transfers balance from the sender to the recipient. #[public] pub fn transfer(context: Context, sender: Address, recipient: Address, amount: i64) -> bool { let Context { program, .. } = context;