From 26823bae4347ee7c113e9a07af8c9df951bc4e8d Mon Sep 17 00:00:00 2001 From: Tom Tsai Date: Tue, 28 Oct 2025 10:45:47 +0800 Subject: [PATCH] Fix typo in parameter documentation for pool object --- sui/cetus_clmm/sources/pool.move | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sui/cetus_clmm/sources/pool.move b/sui/cetus_clmm/sources/pool.move index 24ff606..3dafcde 100644 --- a/sui/cetus_clmm/sources/pool.move +++ b/sui/cetus_clmm/sources/pool.move @@ -357,7 +357,7 @@ module cetusclmm::pool { /// /// params /// - `config` The global config object of clmm package. - /// - `pool' The clmpool object. + /// - `pool` The clmpool object. /// - `position_nft` "clmm" uses NFTs to hold positions, which we call "position_nft". /// It serves as the unique authority representing the position. If you transfer it to another address, /// it means that you have also transferred the position to that address. @@ -379,7 +379,7 @@ module cetusclmm::pool { /// /// params /// - `config` The global config object of clmm package. - /// - `pool'` The clmmpool object. + /// - `pool` The clmmpool object. /// - `position_nft` The positon nft object. /// - `amount` The coin amount which you wan's add to position. the coin type specify by `fix_amount_a`. /// - `fix_amount_a` Which coin type you want fix amount to add into this position specify by this flag.