aboutsummaryrefslogtreecommitdiffstats
path: root/notes
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2011-04-11 12:05:37 -0400
committerMarti Bolivar <mbolivar@leaflabs.com>2011-04-11 12:05:37 -0400
commitbe4f7904584da06a5971616034dd3839e433edf8 (patch)
tree43e4b2c654dc4dbbbf9eab01899259f3cff6df9c /notes
parent79d1ee686324b92036792986c733f733345c38fb (diff)
downloadlibrambutan-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.rst7
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);