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 Declarations of array variables should not have a space between the type and
the brackets. the brackets.
Yes: `uint[] x;` Yes::
No: `uint [] x;`
uint[] x;
No::
uint [] x;
Other Recommendations Other Recommendations
===================== =====================