From 570e7353b5169cd9fdff305661ab5e1001dad07f Mon Sep 17 00:00:00 2001 From: ssonicblue Date: Wed, 23 Mar 2016 12:34:25 +0800 Subject: Update style-guide.rst Update section 'Variable Declarations' for consistency with the format of the rest of the document. --- docs/style-guide.rst | 10 ++++++++-- 1 file 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 ===================== -- cgit