diff options
| -rw-r--r-- | solidity.html.markdown | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/solidity.html.markdown b/solidity.html.markdown index 5b0ac3a3..602d74f0 100644 --- a/solidity.html.markdown +++ b/solidity.html.markdown @@ -62,7 +62,7 @@ contract SimpleBank { // CapWords      event LogDepositMade(address accountAddress, uint amount);      // Constructor, can receive one or many variables here; only one allowed -    function AcmeBank() { +    function SimpleBank() {          // msg provides details about the message that's sent to the contract          // msg.sender is contract caller (address of contract creator)          owner = msg.sender; | 
