[docs] Put DefaultOption bullet in alphabetical order.
llvm-svn: 359309
diff --git a/llvm/docs/CommandLine.rst b/llvm/docs/CommandLine.rst
index d34fb2c..34bee93 100644
--- a/llvm/docs/CommandLine.rst
+++ b/llvm/docs/CommandLine.rst
@@ -1234,6 +1234,14 @@
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 @@
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