From 1948b9687f287ebd34f4ea7c27f8007dca2542db Mon Sep 17 00:00:00 2001 From: wbt Date: Tue, 16 Jan 2018 13:08:20 -0500 Subject: Case convention clarification Constructors follow the contract naming convention, using CapWords, instead of mixedCase. --- docs/style-guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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 -- cgit