Case convention clarification

Constructors follow the contract naming convention, using CapWords, instead of mixedCase.
This commit is contained in:
wbt 2018-01-16 13:08:20 -05:00 committed by GitHub
parent fc7733c053
commit 1948b9687f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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