diff options
author | Svetlin Nakov <nakov@users.noreply.github.com> | 2017-10-26 03:58:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-26 03:58:18 +0800 |
commit | 58778be567620a550210150f8616440b9a5dbd55 (patch) | |
tree | 0f4186f5f30e4c8cbad82f27be56f572fa298c6e | |
parent | f39cf7be41a4c781fdcc71b5bc86b16764241d4f (diff) | |
download | dexon-solidity-58778be567620a550210150f8616440b9a5dbd55.tar.gz dexon-solidity-58778be567620a550210150f8616440b9a5dbd55.tar.zst dexon-solidity-58778be567620a550210150f8616440b9a5dbd55.zip |
Fixed typos
-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``. |