diff options
author | chriseth <chris@ethereum.org> | 2018-01-18 16:35:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-18 16:35:30 +0800 |
commit | 43b836fb2af9c08fa8a8c0912e8a6d4f7f1f5ad4 (patch) | |
tree | b1d0f3b726bdf65e8b14017c7626c69118505245 | |
parent | 4715167ea2db09e21246a03c26fa07bbf0088212 (diff) | |
parent | 1948b9687f287ebd34f4ea7c27f8007dca2542db (diff) | |
download | dexon-solidity-43b836fb2af9c08fa8a8c0912e8a6d4f7f1f5ad4.tar.gz dexon-solidity-43b836fb2af9c08fa8a8c0912e8a6d4f7f1f5ad4.tar.zst dexon-solidity-43b836fb2af9c08fa8a8c0912e8a6d4f7f1f5ad4.zip |
Merge pull request #3399 from wbt/patch-1
Case convention clarification
-rw-r--r-- | docs/style-guide.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/style-guide.rst b/docs/style-guide.rst index 9a1b919b..4c0d44f0 100644 --- a/docs/style-guide.rst +++ b/docs/style-guide.rst @@ -719,7 +719,7 @@ Events should be named using the CapWords style. Examples: ``Deposit``, ``Transf Function Names ============== -Functions should use mixedCase. Examples: ``getBalance``, ``transfer``, ``verifyOwner``, ``addMember``, ``changeOwner``. +Functions other than constructors should use mixedCase. Examples: ``getBalance``, ``transfer``, ``verifyOwner``, ``addMember``, ``changeOwner``. Function Argument Names |