From b05fb9c200d9d1aff9c432f646731260465bdeee Mon Sep 17 00:00:00 2001 From: Mauro Velazquez Date: Mon, 17 Jul 2017 21:02:00 -0300 Subject: [PATCH] Update ownable.rst Change the name of the function in the docs to the actual name in the contract source To prevent misunderstandings. --- docs/source/ownable.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/ownable.rst b/docs/source/ownable.rst index 43a088517..30daaab61 100644 --- a/docs/source/ownable.rst +++ b/docs/source/ownable.rst @@ -11,6 +11,6 @@ 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. \ No newline at end of file +Transfers ownership of the contract to the passed address.