diff options
author | chriseth <c@ethdev.com> | 2016-03-23 19:02:23 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-03-23 19:02:23 +0800 |
commit | 2c5641a1dbfdda4104176c7eb238891f99478664 (patch) | |
tree | 341415b67d7f20b3323b3927a6e8c83e40ab02d9 /docs | |
parent | e369e18584a60bd5d837c85860582aa692abbbf2 (diff) | |
parent | 570e7353b5169cd9fdff305661ab5e1001dad07f (diff) | |
download | dexon-solidity-2c5641a1dbfdda4104176c7eb238891f99478664.tar.gz dexon-solidity-2c5641a1dbfdda4104176c7eb238891f99478664.tar.zst dexon-solidity-2c5641a1dbfdda4104176c7eb238891f99478664.zip |
Merge pull request #445 from ssonicblue/patch-1
Update style-guide.rst
Diffstat (limited to 'docs')
-rw-r--r-- | docs/style-guide.rst | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/style-guide.rst b/docs/style-guide.rst index 0e782e23..c36efe2c 100644 --- a/docs/style-guide.rst +++ b/docs/style-guide.rst @@ -490,8 +490,14 @@ Variable Declarations Declarations of array variables should not have a space between the type and the brackets. -Yes: `uint[] x;` -No: `uint [] x;` +Yes:: + + uint[] x; + +No:: + + uint [] x; + Other Recommendations ===================== |