Browse Source

updated documentation for claimable and ownable interfaces

qdeswaef 8 years ago
parent
commit
ed6df57f88
1 changed files with 2 additions and 2 deletions
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -64,7 +64,7 @@ Sets the address of the creator of the contract as the owner.
 #### modifier onlyOwner( )
 Prevents function from running if it is called by anyone other than the owner.
 
-#### transfer(address newOwner) onlyOwner
+#### transferOwnership(address newOwner) onlyOwner
 Transfers ownership of the contract to the passed address.
 
 ---
@@ -97,7 +97,7 @@ ___
 ### Claimable
 Extension for the Ownable contract, where the ownership needs to be claimed
 
-#### transfer(address newOwner) onlyOwner
+#### transferOwnership(address newOwner) onlyOwner
 Sets the passed address as the pending owner.
 
 #### modifier onlyPendingOwner