diff options
Diffstat (limited to 'notes')
-rw-r--r-- | notes/coding_standard.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/notes/coding_standard.rst b/notes/coding_standard.rst index 1deed03..ced946d 100644 --- a/notes/coding_standard.rst +++ b/notes/coding_standard.rst @@ -21,6 +21,9 @@ scattered about this file which will provide you additional help. Vim customizations to do the same thing would be nice (hint, hint)! +.. contents:: Contents + :local: + License ------- @@ -94,8 +97,8 @@ Whitespace/Indentation } - Exactly one space in between binary arithmetic, logical, and - comparison operators and their operands, except for the . and -> - operators. Examples:: + comparison operators and their operands. This doesn't apply to the + . and -> operators. Examples:: // This is good: int x = a + b * (c - d); |