]> granicus.if.org Git - llvm/commitdiff
[docs] Put DefaultOption bullet in alphabetical order.
authorDon Hinton <hintonda@gmail.com>
Fri, 26 Apr 2019 15:22:21 +0000 (15:22 +0000)
committerDon Hinton <hintonda@gmail.com>
Fri, 26 Apr 2019 15:22:21 +0000 (15:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359309 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CommandLine.rst

index d34fb2c3822b23fa3fcd38164c4021cfd61a3c14..34bee934ce9f7bc280ef5290c9002ff5812d000f 100644 (file)
@@ -1234,6 +1234,14 @@ specify boolean properties that modify the option.
   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 the option.
   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