diff options
-rw-r--r-- | docs/style-guide.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/style-guide.rst b/docs/style-guide.rst index ee2be23e..66fae0c4 100644 --- a/docs/style-guide.rst +++ b/docs/style-guide.rst @@ -711,8 +711,8 @@ Function Names Functions should use mixedCase. Examples: ``getBalance``, ``transfer``, ``verifyOwner``, ``addMember``, ``changeOwner``. -Function Arguments Names -======================== +Function Argument Names +======================= Function arguments should use mixedCase. Examples: ``initialSupply``, ``account``, ``recipientAddress``, ``senderAddress``, ``newOwner``. @@ -720,8 +720,8 @@ When writing library functions that operate on a custom struct, the struct should be the first argument and should always be named ``self``. -Local and State Variables Names -=============================== +Local and State Variable Names +============================== Use mixedCase. Examples: ``totalSupply``, ``remainingSupply``, ``balancesOf``, ``creatorAddress``, ``isPreSale``, ``tokenExchangeRate``. |