Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Fix typo and error in action_wrapper documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
conr2d committed Mar 23, 2019
1 parent ab4fc3c commit 618c23a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/eosiolib/contracts/eosio/action.hpp
Expand Up @@ -425,7 +425,7 @@ namespace eosio {
* Example:
* @code
* // defined by contract writer of the actions
* using transfer act = action_wrapper<"transfer"_n, &token::transfer>;( *this, transfer, {st.issuer,N(active)}, {st.issuer, to, quantity, memo} );
* using transfer_act = action_wrapper<"transfer"_n, &token::transfer>;
* // usage by different contract writer
* transfer_act{"eosio.token"_n, {st.issuer, "active"_n}}.send(st.issuer, to, quantity, memo);
* // or
Expand Down

0 comments on commit 618c23a

Please sign in to comment.