Update style-guide.rst

Update section 'Variable Declarations' for consistency with the format of the rest of the document.
This commit is contained in:
ssonicblue 2016-03-23 12:34:25 +08:00
parent e369e18584
commit 570e7353b5

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