aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/lang/int.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/int.rst
parent5e587be27a7c3bd854b686952a5c9637a2432ff0 (diff)
downloadlibrambutan-078edc158da7906ba72e7e6528e1a811e07270e7.tar.gz
librambutan-078edc158da7906ba72e7e6528e1a811e07270e7.zip
Finished converting the Arduino docs
Diffstat (limited to 'docs/source/lang/int.rst')
-rw-r--r--docs/source/lang/int.rst9
1 files changed, 3 insertions, 6 deletions
diff --git a/docs/source/lang/int.rst b/docs/source/lang/int.rst
index ac2f16a..ca75f75 100644
--- a/docs/source/lang/int.rst
+++ b/docs/source/lang/int.rst
@@ -2,11 +2,8 @@
.. _lang-int:
-int
-===
-
-Description
------------
+``int``
+=======
The ``int`` data type represents integers. Integers are your primary
data type for number storage, and store a 4 byte value. This yields a
@@ -43,7 +40,7 @@ Integer Overflow
----------------
When ``int`` variables leave the range specified above, they
-:ref:`roll over <lang-variable-rollover>` in the other direction.
+:ref:`roll over <lang-variables-rollover>` in the other direction.
Here are some examples::
int x;