solidity contract name convention CamelCase to CapWords (#2606)

This commit is contained in:
Miguel Mota 2016-12-23 10:47:03 -08:00 committed by ven
parent 393bab2f6e
commit 9453efb845

View File

@ -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