diff options
author | ssonicblue <ssonicblue@users.noreply.github.com> | 2016-03-23 12:34:25 +0800 |
---|---|---|
committer | ssonicblue <ssonicblue@users.noreply.github.com> | 2016-03-23 12:34:25 +0800 |
commit | 570e7353b5169cd9fdff305661ab5e1001dad07f (patch) | |
tree | 341415b67d7f20b3323b3927a6e8c83e40ab02d9 /docs/style-guide.rst | |
parent | e369e18584a60bd5d837c85860582aa692abbbf2 (diff) | |
download | dexon-solidity-570e7353b5169cd9fdff305661ab5e1001dad07f.tar.gz dexon-solidity-570e7353b5169cd9fdff305661ab5e1001dad07f.tar.zst dexon-solidity-570e7353b5169cd9fdff305661ab5e1001dad07f.zip |
Update style-guide.rst
Update section 'Variable Declarations' for consistency with the format of the rest of the document.
Diffstat (limited to 'docs/style-guide.rst')
-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 ===================== |