[llvm] r359309 - [docs] Put DefaultOption bullet in alphabetical order.

Don Hinton via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 26 08:22:22 PDT 2019


Author: dhinton
Date: Fri Apr 26 08:22:21 2019
New Revision: 359309

URL: http://llvm.org/viewvc/llvm-project?rev=359309&view=rev
Log:
[docs] Put DefaultOption bullet in alphabetical order.

Modified:
    llvm/trunk/docs/CommandLine.rst

Modified: llvm/trunk/docs/CommandLine.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandLine.rst?rev=359309&r1=359308&r2=359309&view=diff
==============================================================================
--- llvm/trunk/docs/CommandLine.rst (original)
+++ llvm/trunk/docs/CommandLine.rst Fri Apr 26 08:22:21 2019
@@ -1234,6 +1234,14 @@ specify boolean properties that modify t
   option is allowed to accept one or more values (i.e. it is a `cl::list`_
   option).
 
+.. _cl::DefaultOption:
+
+* The **cl::DefaultOption** modifier is used to specify that the option is a
+  default that can be overridden by application specific parsers. For example,
+  the ``-help`` alias, ``-h``, is registered this way, so it can be overridden
+  by applications that need to use the ``-h`` option for another purpose,
+  either as a regular option or an alias for another option.
+
 .. _cl::PositionalEatsArgs:
 
 * The **cl::PositionalEatsArgs** modifier (which only applies to positional
@@ -1253,14 +1261,6 @@ specify boolean properties that modify t
   with ``cl::CommaSeparated``, this modifier only makes sense with a `cl::list`_
   option.
 
-.. _cl::DefaultOption:
-
-* The **cl::DefaultOption** modifier is used to specify that the option is a
-  default that can be overridden by application specific parsers. For example,
-  the ``-help`` alias, ``-h``, is registered this way, so it can be overridden
-  by applications that need to use the ``-h`` option for another purpose,
-  either as a regular option or an alias for another option.
-
 .. _response files:
 
 Response files




More information about the llvm-commits mailing list