summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlexey Samsonov <vonosmas@gmail.com>2014-06-05 23:12:43 +0000
committerAlexey Samsonov <vonosmas@gmail.com>2014-06-05 23:12:43 +0000
commitbbd34136f344e88ec8a0b148da908c01a1c3d910 (patch)
tree2cf8f6a5a8c0366c0d31c1c790ea589676b86339 /docs
parent3b889b9d3167ecd225d0fb3d6eb567e0d974985a (diff)
downloadllvm-bbd34136f344e88ec8a0b148da908c01a1c3d910.tar.gz
llvm-bbd34136f344e88ec8a0b148da908c01a1c3d910.tar.bz2
llvm-bbd34136f344e88ec8a0b148da908c01a1c3d910.tar.xz
Fix markup for -debug-only option
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210300 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ProgrammersManual.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ProgrammersManual.rst b/docs/ProgrammersManual.rst
index 8d9668e4ee..9838ba2ecc 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++