Small documentation update.
authorMikhail Glushenkov <foldr@codedgers.com>
Tue, 15 Dec 2009 03:03:37 +0000 (03:03 +0000)
committerMikhail Glushenkov <foldr@codedgers.com>
Tue, 15 Dec 2009 03:03:37 +0000 (03:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91401 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvmc/doc/LLVMC-Reference.rst

index 4cf2a5a82e484cb2451cf020d63e584c6d0c5a10..789fc09a493c8c24b7adee9c5efe0db193b389f6 100644 (file)
@@ -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`__.