aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/lang/increment.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-11-29 01:49:26 -0500
committerMarti Bolivar <mbolivar@mit.edu>2010-11-29 01:49:26 -0500
commit078edc158da7906ba72e7e6528e1a811e07270e7 (patch)
tree1bc7b2e8137fb5ebfc7b59d59294d7adb9e95468 /docs/source/lang/increment.rst
parent5e587be27a7c3bd854b686952a5c9637a2432ff0 (diff)
downloadlibrambutan-078edc158da7906ba72e7e6528e1a811e07270e7.tar.gz
librambutan-078edc158da7906ba72e7e6528e1a811e07270e7.zip
Finished converting the Arduino docs
Diffstat (limited to 'docs/source/lang/increment.rst')
-rw-r--r--docs/source/lang/increment.rst15
1 files changed, 4 insertions, 11 deletions
diff --git a/docs/source/lang/increment.rst b/docs/source/lang/increment.rst
index 5536a0a..6dffa80 100644
--- a/docs/source/lang/increment.rst
+++ b/docs/source/lang/increment.rst
@@ -2,8 +2,8 @@
.. _lang-increment:
-Increment (``++``) and Decrement (``--``)
-=========================================
+Increment and Decrement Operators (``++``, ``--``)
+==================================================
These operators increment (add one to) or decrement (subtract one
from) a variable. If they come before the variable, they return its
@@ -29,16 +29,9 @@ A more extended example::
// this line won't compile (notice the extra space):
int y = x+ +;
-Parameters
-----------
-
-**x**: an integer value (like an ``int``, ``long``, ``unsigned int``,
-etc.).
-
-See also
+See Also
--------
-- :ref:`Compound arithmetic operators <lang-arithmeticcompound>`
-
+- :ref:`lang-compoundarithmetic`
.. include:: cc-attribution.txt