Skip to content

Commit

Permalink
Merge pull request #112 from wangshouh/Fix-SRC3-typo
Browse files Browse the repository at this point in the history
Fix SRC3 examples code
  • Loading branch information
K1-R1 authored Jun 21, 2024
2 parents a168279 + 1bab903 commit df30ecd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions standards/src/src3.sw
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ abi SRC3 {
/// use src3::SRC3;
///
/// fn foo(contract_id: ContractId) {
/// let contract_abi = abi(SR3, contract);
/// let contract_abi = abi(SRC3, contract);
/// contract_abi.mint(Identity::ContractId(contract_id), SubId::zero(), 100);
/// }
/// ```
Expand All @@ -40,7 +40,7 @@ abi SRC3 {
/// use src3::SRC3;
///
/// fn foo(contract_id: ContractId, asset_id: AssetId) {
/// let contract_abi = abi(SR3, contract_id);
/// let contract_abi = abi(SRC3, contract_id);
/// contract_abi {
/// gas: 10000,
/// coins: 100,
Expand Down

0 comments on commit df30ecd

Please sign in to comment.