From 00e26f1b876501d22d919891e74d1fdc1565010e Mon Sep 17 00:00:00 2001 From: Nidhal Baccouri <34376516+nidhaloff@users.noreply.github.com> Date: Sat, 25 Dec 2021 21:28:03 +0100 Subject: [PATCH 1/2] fixed small typo in the docstring Fixed small typo in the docstring of the issue action --- contracts/eosio.token/include/eosio.token/eosio.token.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/eosio.token/include/eosio.token/eosio.token.hpp b/contracts/eosio.token/include/eosio.token/eosio.token.hpp index 050a685b5..0cbf930be 100644 --- a/contracts/eosio.token/include/eosio.token/eosio.token.hpp +++ b/contracts/eosio.token/include/eosio.token/eosio.token.hpp @@ -44,7 +44,7 @@ namespace eosio { * This action issues to `to` account a `quantity` of tokens. * * @param to - the account to issue tokens to, it must be the same as the issuer, - * @param quntity - the amount of tokens to be issued, + * @param quantity - the amount of tokens to be issued, * @memo - the memo string that accompanies the token issue transaction. */ [[eosio::action]] From cee881e49da9f5e100d02a2d2692f72b2c519b89 Mon Sep 17 00:00:00 2001 From: Nidhal Baccouri <34376516+nidhaloff@users.noreply.github.com> Date: Sat, 25 Dec 2021 21:38:03 +0100 Subject: [PATCH 2/2] updated docstring of issue action --- contracts/eosio.token/include/eosio.token/eosio.token.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/eosio.token/include/eosio.token/eosio.token.hpp b/contracts/eosio.token/include/eosio.token/eosio.token.hpp index 0cbf930be..5e2d372ae 100644 --- a/contracts/eosio.token/include/eosio.token/eosio.token.hpp +++ b/contracts/eosio.token/include/eosio.token/eosio.token.hpp @@ -45,7 +45,7 @@ namespace eosio { * * @param to - the account to issue tokens to, it must be the same as the issuer, * @param quantity - the amount of tokens to be issued, - * @memo - the memo string that accompanies the token issue transaction. + * @param memo - the memo string that accompanies the token issue transaction. */ [[eosio::action]] void issue( const name& to, const asset& quantity, const string& memo );