diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-02-09 21:10:34 -0500 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-02-09 21:10:34 -0500 |
commit | 9768ee6b2f60442676613c154ad784b30191711c (patch) | |
tree | bef1b50fde1ea3eafc89124b31dae82979ca8d14 /source/lang/cpp/keywords.rst | |
parent | 9ea60c7e7dffd06791ec2dc62ffab3f2bf802f08 (diff) | |
download | librambutan-9768ee6b2f60442676613c154ad784b30191711c.tar.gz librambutan-9768ee6b2f60442676613c154ad784b30191711c.zip |
Fixed docs bug where we say "long" when we mean "long long"
Diffstat (limited to 'source/lang/cpp/keywords.rst')
-rw-r--r-- | source/lang/cpp/keywords.rst | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/source/lang/cpp/keywords.rst b/source/lang/cpp/keywords.rst index e3bc20d..f21cd0d 100644 --- a/source/lang/cpp/keywords.rst +++ b/source/lang/cpp/keywords.rst @@ -89,11 +89,11 @@ Types The following keywords are used for built-in types. - :ref:`bool <lang-booleanvariables>` -- :ref:`lang-char` -- :ref:`lang-double` -- :ref:`lang-float` -- :ref:`lang-int` -- :ref:`lang-long` +- :ref:`char <lang-char>` +- :ref:`double <lang-double>` +- :ref:`float <lang-float>` +- :ref:`int <lang-int>` +- :ref:`long <lang-long>` - :ref:`short <lang-built-in-types-integral>` - :ref:`void <lang-void>` (not really a type, but used in the absence of one) @@ -109,8 +109,7 @@ Qualifiers variables; it has other uses not documented here. - ``unsigned`` is used to specify an unsigned integral type. - Examples: :ref:`lang-unsignedint`, :ref:`lang-unsignedchar`, - :ref:`lang-unsignedlong`. + Examples: :ref:`lang-unsignedint`, :ref:`lang-unsignedchar`. - :ref:`volatile <lang-volatile>` is useful when declaring variables that may be modified by external interrupts. |