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

Commit

Permalink
Merge pull request EOSIO#466 from conr2d/fix/action_wrapper-doc
Browse files Browse the repository at this point in the history
Fix typo and error in action_wrapper documentation
  • Loading branch information
larryk85 committed Jul 8, 2019
2 parents 6e12950 + d0ae3bc commit 67c8d77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/eosiolib/contracts/eosio/action.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,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 67c8d77

Please sign in to comment.