aboutsummaryrefslogtreecommitdiffstats
path: root/source/lang/cpp/void.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-12-15 01:50:56 -0500
committerMarti Bolivar <mbolivar@mit.edu>2010-12-15 16:16:31 -0500
commit7f31099eead99718d279d9a4bb543131329891ce (patch)
treed1bca663d7a8e3541085951664ecf26bea31c006 /source/lang/cpp/void.rst
parent210f3d2b1555bae87c9de27ea145e16d3bddb0f8 (diff)
downloadlibrambutan-7f31099eead99718d279d9a4bb543131329891ce.tar.gz
librambutan-7f31099eead99718d279d9a4bb543131329891ce.zip
Finalized 0.0.9 documentation.
Diffstat (limited to 'source/lang/cpp/void.rst')
-rw-r--r--source/lang/cpp/void.rst10
1 files changed, 6 insertions, 4 deletions
diff --git a/source/lang/cpp/void.rst b/source/lang/cpp/void.rst
index 88bd448..88c9c64 100644
--- a/source/lang/cpp/void.rst
+++ b/source/lang/cpp/void.rst
@@ -5,10 +5,12 @@
``void``
========
-The ``void`` keyword is used only in function declarations. It
-indicates that the function is expected to return no information to
-the function from which it was called, or that it expects no arguments
-from its caller.
+.. cpp:type:: void
+
+ The ``void`` keyword is used in function declarations. It indicates
+ that the function is expected to return no information to the
+ function from which it was called, or that it expects no arguments
+ from its caller.
Example
-------