diff options
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/CommandLine.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/CommandLine.rst b/llvm/docs/CommandLine.rst index 65355518448..4c84d23297b 100644 --- a/llvm/docs/CommandLine.rst +++ b/llvm/docs/CommandLine.rst @@ -925,7 +925,7 @@ This section describes the basic attributes that you can specify on options. .. code-block:: c++ - cl::opt<**bool**> Quiet("quiet"); + cl::opt<bool> Quiet("quiet"); .. _cl::desc(...): |