[llvm] r310520 - [Docs] Remove a stray period from a code example in the Programmer's Manual.
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 9 13:55:33 PDT 2017
Author: ctopper
Date: Wed Aug 9 13:55:33 2017
New Revision: 310520
URL: http://llvm.org/viewvc/llvm-project?rev=310520&view=rev
Log:
[Docs] Remove a stray period from a code example in the Programmer's Manual.
Modified:
llvm/trunk/docs/ProgrammersManual.rst
Modified: llvm/trunk/docs/ProgrammersManual.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.rst?rev=310520&r1=310519&r2=310520&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.rst (original)
+++ llvm/trunk/docs/ProgrammersManual.rst Wed Aug 9 13:55:33 2017
@@ -1224,7 +1224,7 @@ Define your DebugCounter like this:
.. code-block:: c++
DEBUG_COUNTER(DeleteAnInstruction, "passname-delete-instruction",
- "Controls which instructions get delete").
+ "Controls which instructions get delete")
The ``DEBUG_COUNTER`` macro defines a static variable, whose name
is specified by the first argument. The name of the counter
More information about the llvm-commits
mailing list