[llvm] r354203 - Fix typo in docs

Dmitri Gribenko via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 16 06:51:44 PST 2019


Author: gribozavr
Date: Sat Feb 16 06:51:44 2019
New Revision: 354203

URL: http://llvm.org/viewvc/llvm-project?rev=354203&view=rev
Log:
Fix typo in docs

Patch by Alex Yursha.

Differential Revision: https://reviews.llvm.org/D45903

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=354203&r1=354202&r2=354203&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.rst (original)
+++ llvm/trunk/docs/ProgrammersManual.rst Sat Feb 16 06:51:44 2019
@@ -2659,7 +2659,7 @@ Iterating over def-use & use-def chains
 
 Frequently, we might have an instance of the ``Value`` class (`doxygen
 <http://llvm.org/doxygen/classllvm_1_1Value.html>`__) and we want to determine
-which ``User`` s use the ``Value``.  The list of all ``User``\ s of a particular
+which ``User``\ s use the ``Value``.  The list of all ``User``\ s of a particular
 ``Value`` is called a *def-use* chain.  For example, let's say we have a
 ``Function*`` named ``F`` to a particular function ``foo``.  Finding all of the
 instructions that *use* ``foo`` is as simple as iterating over the *def-use*




More information about the llvm-commits mailing list