diff options
| -rw-r--r-- | solidity.html.markdown | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/solidity.html.markdown b/solidity.html.markdown index 004c225e..c0074b33 100644 --- a/solidity.html.markdown +++ b/solidity.html.markdown @@ -111,6 +111,7 @@ contract SimpleBank { // CapWords      /// @return The balance of the user      // 'constant' prevents function from editing state variables;      // allows function to run locally/off blockchain +    // NOTE: 'constant' on functions is an alias to 'view', but this is deprecated and is planned to be dropped in version 0.5.0.      function balance() constant public returns (uint) {          return balances[msg.sender];      } | 
