Skip to content

Commit

Permalink
Merge pull request #931 from johnhforrest/master
Browse files Browse the repository at this point in the history
Update operator language in #721
  • Loading branch information
gcolvin authored Mar 28, 2018
2 parents 76d83cb + 620ada9 commit 5a68d6b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions EIPS/eip-721.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,10 @@ interface ERC721 /* is ERC165 */ {
/// @notice Enable or disable approval for a third party ("operator") to manage
/// all of `msg.sender`'s assets.
/// @dev Emits the ApprovalForAll event
/// @dev Emits the ApprovalForAll event. The contract MUST allow
/// multiple operators per owner.
/// @param _operator Address to add to the set of authorized operators.
/// @param _approved True if the operators is approved, false to revoke approval
/// @param _approved True if the operator is approved, false to revoke approval
function setApprovalForAll(address _operator, bool _approved) external;
/// @notice Get the approved address for a single NFT
Expand Down

0 comments on commit 5a68d6b

Please sign in to comment.