aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/lang/cpp/int.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2011-02-09 21:10:34 -0500
committerMarti Bolivar <mbolivar@leaflabs.com>2011-02-09 21:10:34 -0500
commit2a0c7510fb91ba4a11b6772a8ae72685823907f8 (patch)
treed73f5ba8dc722032ab4f7efc913eecf2fd57dff4 /docs/source/lang/cpp/int.rst
parent7366564129bf4e4030e9083f4521eda49d985fb8 (diff)
downloadlibrambutan-2a0c7510fb91ba4a11b6772a8ae72685823907f8.tar.gz
librambutan-2a0c7510fb91ba4a11b6772a8ae72685823907f8.zip
Fixed docs bug where we say "long" when we mean "long long"
Diffstat (limited to 'docs/source/lang/cpp/int.rst')
-rw-r--r--docs/source/lang/cpp/int.rst8
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/source/lang/cpp/int.rst b/docs/source/lang/cpp/int.rst
index ca75f75..3e96b69 100644
--- a/docs/source/lang/cpp/int.rst
+++ b/docs/source/lang/cpp/int.rst
@@ -24,6 +24,10 @@ arithmetic operations work mostly as you'd expect. There can be an
dealing with the :ref:`bitshift right operator (>>)
<lang-bitshift>`, however.
+.. _lang-long:
+
+The ``long`` type is a synonym for ``int``.
+
Here is an example of declaring an ``int`` variable named ``ledPin``,
then giving it value 13::
@@ -56,8 +60,8 @@ See Also
- :ref:`unsigned int <lang-unsignedint>`
- :ref:`char <lang-char>`
- :ref:`unsigned char <lang-unsignedchar>`
-- :ref:`long <lang-long>`
-- :ref:`unsigned long <lang-unsignedlong>`
+- :ref:`long long <lang-longlong>`
+- :ref:`unsigned long long <lang-unsignedlonglong>`
- :ref:`Integer Constants <lang-constants-integers>`
- :ref:`Variables <lang-variables>`