diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-04-11 12:05:37 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-04-11 12:05:37 -0400 |
commit | be4f7904584da06a5971616034dd3839e433edf8 (patch) | |
tree | 43e4b2c654dc4dbbbf9eab01899259f3cff6df9c /notes | |
parent | 79d1ee686324b92036792986c733f733345c38fb (diff) | |
download | librambutan-be4f7904584da06a5971616034dd3839e433edf8.tar.gz librambutan-be4f7904584da06a5971616034dd3839e433edf8.zip |
Coding standard tweaks.
It's mostly ready for inclusion in the main body of documentation.
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); |