aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/language.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-10-25 21:15:28 -0400
committerMarti Bolivar <mbolivar@mit.edu>2010-11-17 12:44:28 -0500
commit95783b750fda95f5f4c1fac00ab24da03b31b517 (patch)
tree2b0bf89c101aa58af5796fbe76c7ec98eebbb0a5 /docs/source/language.rst
parent3a9a119e9a8ce72c0e1b8fa4d3904bdf84ce355c (diff)
downloadlibrambutan-95783b750fda95f5f4c1fac00ab24da03b31b517.tar.gz
librambutan-95783b750fda95f5f4c1fac00ab24da03b31b517.zip
arduino language reference nearing completion, properly CC-BY-SA 3.0 attributed
Diffstat (limited to 'docs/source/language.rst')
-rw-r--r--docs/source/language.rst8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/source/language.rst b/docs/source/language.rst
index 5a2efad..b2ef017 100644
--- a/docs/source/language.rst
+++ b/docs/source/language.rst
@@ -193,7 +193,9 @@ Arduino Documentation Links
| | | |
+------------------------------------+------------------------------------+-----------------------------------------+
-.. _language-no-word:
+.. _language-missing-features:
+
+Stub TODO: fill in other missing features, like analogReference()
.. note::
@@ -212,7 +214,7 @@ Arduino Documentation Links
can put the following at the top of the file you're porting::
typedef uint16 word;
-
+
.. _if: http://arduino.cc/en/Reference/If
.. _if...else: http://arduino.cc/en/Reference/Else
.. _for: http://arduino.cc/en/Reference/For
@@ -394,7 +396,7 @@ method, which behaves roughly like::
while (true) loop();
}
-(The truth is a little bit more complicated, but not by much).
+(The truth is a little bit more complicated, but not by much).
As an example, consider a sketch with two files. The first file
contains ``setup()`` and ``loop()``::