aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/lang/variables.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/variables.rst
parent5e587be27a7c3bd854b686952a5c9637a2432ff0 (diff)
downloadlibrambutan-078edc158da7906ba72e7e6528e1a811e07270e7.tar.gz
librambutan-078edc158da7906ba72e7e6528e1a811e07270e7.zip
Finished converting the Arduino docs
Diffstat (limited to 'docs/source/lang/variables.rst')
-rw-r--r--docs/source/lang/variables.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/source/lang/variables.rst b/docs/source/lang/variables.rst
index 05a4f96..9094cd5 100644
--- a/docs/source/lang/variables.rst
+++ b/docs/source/lang/variables.rst
@@ -37,8 +37,8 @@ named ``inputVariable2``, with an initial value of ``0``::
int inputVariable2 = 0;
The Maple environment comes ready to use with many useful types of
-variables. See the :ref:`built-in types <lang-types>` page for more
-information.
+variables. See the :ref:`built-in types <lang-numeric-types>` page
+for more information.
Here are a few examples of declaring variables of different types::
@@ -116,8 +116,8 @@ he goes past the left side of the screen, he reappears on the right::
x = x + 1; // x now contains -2,147,483,648; rolled over "right to left"
Each numeric type's reference page includes its range. See the
-:ref:`built-in types <lang-types>` reference for links to each type's
-reference page.
+:ref:`built-in types <lang-numeric-types>` reference for links to each
+type's reference page.
Using Variables
---------------
@@ -149,7 +149,7 @@ See Also
--------
- :ref:`lang-scope`
-- :ref:`lang-types`
+- :ref:`lang-numeric-types`
.. rubric:: Footnotes