diff options
| author | Don Hinton <hintonda@gmail.com> | 2019-04-26 15:22:21 +0000 |
|---|---|---|
| committer | Don Hinton <hintonda@gmail.com> | 2019-04-26 15:22:21 +0000 |
| commit | 6ee3fef9a4e197aab075f6854628403c9b716dac (patch) | |
| tree | f0417984c3fcb91dcec7fb939efc059abbb79c44 | |
| parent | 41327e352285df0f437affc5d6b1522ad650f750 (diff) | |
| download | bcm5719-llvm-6ee3fef9a4e197aab075f6854628403c9b716dac.tar.gz bcm5719-llvm-6ee3fef9a4e197aab075f6854628403c9b716dac.zip | |
[docs] Put DefaultOption bullet in alphabetical order.
llvm-svn: 359309
| -rw-r--r-- | llvm/docs/CommandLine.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/docs/CommandLine.rst b/llvm/docs/CommandLine.rst index d34fb2c3822..34bee934ce9 100644 --- a/llvm/docs/CommandLine.rst +++ b/llvm/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 |

