aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/lang/int.rst
diff options
context:
space:
mode:
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;