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