From bbd34136f344e88ec8a0b148da908c01a1c3d910 Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Thu, 5 Jun 2014 23:12:43 +0000 Subject: [PATCH] Fix markup for -debug-only option git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210300 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/ProgrammersManual.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/ProgrammersManual.rst b/docs/ProgrammersManual.rst index 8d9668e4eec..9838ba2eccd 100644 --- a/docs/ProgrammersManual.rst +++ b/docs/ProgrammersManual.rst @@ -387,7 +387,8 @@ Fine grained debug info with ``DEBUG_TYPE`` and the ``-debug-only`` option Sometimes you may find yourself in a situation where enabling ``-debug`` just turns on **too much** information (such as when working on the code generator). If you want to enable debug information with more fine-grained control, you -define the ``DEBUG_TYPE`` macro and the ``-debug`` only option as follows: +can define the ``DEBUG_TYPE`` macro and use the ``-debug-only`` option as +follows: .. code-block:: c++