aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/lang
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2015-05-28 00:26:43 -0700
committerbnewbold <bnewbold@robocracy.org>2015-05-28 00:28:06 -0700
commit5f27a9afd80f0f405c042c22f9d7e404ba61e2f2 (patch)
treefecf041ed3ee51a56a5b26142c1b0b97cb6289c3 /docs/source/lang
parent5ada40e35c157362f4d3e2c59677d6ea9b648069 (diff)
parent71ef6f46a797f739bf140df934f137d92d791abc (diff)
downloadlibrambutan-5f27a9afd80f0f405c042c22f9d7e404ba61e2f2.tar.gz
librambutan-5f27a9afd80f0f405c042c22f9d7e404ba61e2f2.zip
Merge branch 'legacy'
- superficial rebranding to librambutan - bugfixes to documentation syntax
Diffstat (limited to 'docs/source/lang')
-rw-r--r--docs/source/lang/api/hardwarespi.rst3
-rw-r--r--docs/source/lang/cpp/arithmetic.rst2
2 files changed, 3 insertions, 2 deletions
diff --git a/docs/source/lang/api/hardwarespi.rst b/docs/source/lang/api/hardwarespi.rst
index a44a65f..4d720ac 100644
--- a/docs/source/lang/api/hardwarespi.rst
+++ b/docs/source/lang/api/hardwarespi.rst
@@ -42,7 +42,8 @@ function (an example is given below).
.. FIXME [Breathe] Output doesn't include the class; fix & submit pull req
-.. doxygenfunction:: HardwareSPI::begin
+.. doxygenfunction:: HardwareSPI::begin(void)
+.. doxygenfunction:: HardwareSPI::begin(SPIFrequency, uint32, uint32)
.. note:: If you are using SPI port 3 (on a board that supports it;
not all do); you'll need to call :ref:`lang-disabledebugports`
diff --git a/docs/source/lang/cpp/arithmetic.rst b/docs/source/lang/cpp/arithmetic.rst
index cef3954..b7cb5f6 100644
--- a/docs/source/lang/cpp/arithmetic.rst
+++ b/docs/source/lang/cpp/arithmetic.rst
@@ -110,7 +110,7 @@ types are approximate):
``short``, "0 --- 65,535", "-32,768 --- 32,767", 2
``int``, "0 --- 4,294,967,295", "-2,147,483,648 --- 2,147,483,647", 4
``long``, "0 --- 4,294,967,295", "-2,147,483,648 --- 2,147,483,647", 4
- ``long long``, "0 --- 1.8*10\ :sup:`19`\ " (approx.), "-9.2*10\ :sup:`18` --- 9.2*10\ :sup:`18` (approx.)", 8
+ ``long long``, "0 --- 1.8*10\ :sup:`19`\ (approx.)", "-9.2*10\ :sup:`18` --- 9.2*10\ :sup:`18` (approx.)", 8
See Also