diff options
author | Miguel Mota <miguelmota2@gmail.com> | 2016-12-23 10:47:03 -0800 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2016-12-23 19:47:03 +0100 |
commit | 9453efb8453d57b719c68620c5f7ce36751cfc90 (patch) | |
tree | d7be294fb1022951bedb65e1a3ea8bbd0fa3defd /solidity.html.markdown | |
parent | 393bab2f6e5ebfb6e924929785e821ac6e602efa (diff) |
solidity contract name convention CamelCase to CapWords (#2606)
Diffstat (limited to 'solidity.html.markdown')
-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 0ad8af32..5b0ac3a3 100644 --- a/solidity.html.markdown +++ b/solidity.html.markdown @@ -45,7 +45,7 @@ features are typically marked, and subject to change. Pull requests welcome. /* 'contract' has similarities to 'class' in other languages (class variables, inheritance, etc.) */ -contract SimpleBank { // CamelCase +contract SimpleBank { // CapWords // Declare state variables outside function, persist through life of contract // dictionary that maps addresses to balances |