diff --git a/contracts/eosio.system/include/eosio.system/eosio.system.hpp b/contracts/eosio.system/include/eosio.system/eosio.system.hpp index 32cd62365..4226f4730 100644 --- a/contracts/eosio.system/include/eosio.system/eosio.system.hpp +++ b/contracts/eosio.system/include/eosio.system/eosio.system.hpp @@ -850,7 +850,7 @@ namespace eosiosystem { * * @param payer - the ram buyer, * @param receiver - the ram receiver, - * @param quant - the quntity of tokens to buy ram with. + * @param quant - the quantity of tokens to buy ram with. */ [[eosio::action]] void buyram( const name& payer, const name& receiver, const asset& quant ); @@ -861,7 +861,7 @@ namespace eosiosystem { * * @param payer - the ram buyer, * @param receiver - the ram receiver, - * @param bytes - the quntity of ram to buy specified in bytes. + * @param bytes - the quantity of ram to buy specified in bytes. */ [[eosio::action]] void buyrambytes( const name& payer, const name& receiver, uint32_t bytes ); diff --git a/contracts/eosio.token/include/eosio.token/eosio.token.hpp b/contracts/eosio.token/include/eosio.token/eosio.token.hpp index d5e20164a..2dae303d6 100644 --- a/contracts/eosio.token/include/eosio.token/eosio.token.hpp +++ b/contracts/eosio.token/include/eosio.token/eosio.token.hpp @@ -39,7 +39,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]]