summaryrefslogtreecommitdiff
path: root/tools/llvmc
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2009-12-15 03:03:37 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2009-12-15 03:03:37 +0000
commit68d475ad9091f00b6b99edce2256c12ece289a75 (patch)
tree8dd455e9700e9ef6c2968dbcfc0d3eac047cdde1 /tools/llvmc
parent9818c043d2ef1be70780de92bb42edd53d1da62a (diff)
downloadllvm-68d475ad9091f00b6b99edce2256c12ece289a75.tar.gz
llvm-68d475ad9091f00b6b99edce2256c12ece289a75.tar.bz2
llvm-68d475ad9091f00b6b99edce2256c12ece289a75.tar.xz
Small documentation update.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91401 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc')
-rw-r--r--tools/llvmc/doc/LLVMC-Reference.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/llvmc/doc/LLVMC-Reference.rst b/tools/llvmc/doc/LLVMC-Reference.rst
index 4cf2a5a82e..789fc09a49 100644
--- a/tools/llvmc/doc/LLVMC-Reference.rst
+++ b/tools/llvmc/doc/LLVMC-Reference.rst
@@ -360,10 +360,11 @@ separate option groups syntactically.
and ``required`` properties.
- ``init`` - this option has a default value, either a string (if it is a
- parameter), or a boolean (if it is a switch; boolean constants are called
- ``true`` and ``false``). List options can't have this attribute. Usage
- examples: ``(switch_option "foo", (init true))``; ``(prefix_option "bar",
- (init "baz"))``.
+ parameter), or a boolean (if it is a switch; as in C++, boolean constants
+ are called ``true`` and ``false``). List options can't have ``init``
+ attribute.
+ Usage examples: ``(switch_option "foo", (init true))``; ``(prefix_option
+ "bar", (init "baz"))``.
- ``extern`` - this option is defined in some other plugin, see `below`__.