[llvm] r264138 - [docs] Fix typo in ProgrammersManual.rst
Vedant Kumar via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 22 22:18:50 PDT 2016
Author: vedantk
Date: Wed Mar 23 00:18:50 2016
New Revision: 264138
URL: http://llvm.org/viewvc/llvm-project?rev=264138&view=rev
Log:
[docs] Fix typo in ProgrammersManual.rst
Patch by Miod Vallat!
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=264138&r1=264137&r2=264138&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.rst (original)
+++ llvm/trunk/docs/ProgrammersManual.rst Wed Mar 23 00:18:50 2016
@@ -1876,7 +1876,7 @@ pointer from an iterator is very straigh
However, the iterators you'll be working with in the LLVM framework are special:
they will automatically convert to a ptr-to-instance type whenever they need to.
-Instead of derferencing the iterator and then taking the address of the result,
+Instead of dereferencing the iterator and then taking the address of the result,
you can simply assign the iterator to the proper pointer type and you get the
dereference and address-of operation as a result of the assignment (behind the
scenes, this is a result of overloading casting mechanisms). Thus the second
More information about the llvm-commits
mailing list