From: Don Hinton Date: Fri, 26 Apr 2019 15:22:21 +0000 (+0000) Subject: [docs] Put DefaultOption bullet in alphabetical order. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f6c93d9586dd672af27c3635f1e7832ff2c5904;p=llvm [docs] Put DefaultOption bullet in alphabetical order. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359309 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/CommandLine.rst b/docs/CommandLine.rst index d34fb2c3822..34bee934ce9 100644 --- a/docs/CommandLine.rst +++ b/docs/CommandLine.rst @@ -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