Merge pull request #445 from ssonicblue/patch-1

Update style-guide.rst
This commit is contained in:
chriseth 2016-03-23 12:02:23 +01:00
commit 2c5641a1db

View File

@ -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
=====================