aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-03-23 19:02:23 +0800
committerchriseth <c@ethdev.com>2016-03-23 19:02:23 +0800
commit2c5641a1dbfdda4104176c7eb238891f99478664 (patch)
tree341415b67d7f20b3323b3927a6e8c83e40ab02d9
parente369e18584a60bd5d837c85860582aa692abbbf2 (diff)
parent570e7353b5169cd9fdff305661ab5e1001dad07f (diff)
downloaddexon-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
-rw-r--r--docs/style-guide.rst10
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
=====================