r279942 - Fix a typo in the doc: overriden -> overridden
Sylvestre Ledru via cfe-commits
cfe-commits at lists.llvm.org
Sun Aug 28 13:22:35 PDT 2016
Author: sylvestre
Date: Sun Aug 28 15:22:34 2016
New Revision: 279942
URL: http://llvm.org/viewvc/llvm-project?rev=279942&view=rev
Log:
Fix a typo in the doc: overriden -> overridden
Modified:
cfe/trunk/docs/LibASTMatchersReference.html
cfe/trunk/docs/analyzer/IPA.txt
Modified: cfe/trunk/docs/LibASTMatchersReference.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/LibASTMatchersReference.html?rev=279942&r1=279941&r2=279942&view=diff
==============================================================================
--- cfe/trunk/docs/LibASTMatchersReference.html (original)
+++ cfe/trunk/docs/LibASTMatchersReference.html Sun Aug 28 15:22:34 2016
@@ -4092,7 +4092,7 @@ matcher, or is a pointer to a type that
<tr><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1CXXMethodDecl.html">CXXMethodDecl</a>></td><td class="name" onclick="toggle('forEachOverridden0')"><a name="forEachOverridden0Anchor">forEachOverridden</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1CXXMethodDecl.html">CXXMethodDecl</a>> InnerMatcher</td></tr>
-<tr><td colspan="4" class="doc" id="forEachOverridden0"><pre>Matches each method overriden by the given method. This matcher may
+<tr><td colspan="4" class="doc" id="forEachOverridden0"><pre>Matches each method overridden by the given method. This matcher may
produce multiple matches.
Given
Modified: cfe/trunk/docs/analyzer/IPA.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/analyzer/IPA.txt?rev=279942&r1=279941&r2=279942&view=diff
==============================================================================
--- cfe/trunk/docs/analyzer/IPA.txt (original)
+++ cfe/trunk/docs/analyzer/IPA.txt Sun Aug 28 15:22:34 2016
@@ -303,7 +303,7 @@ Currently, there are 2 modes:
DynamicDispatchModeConservative - Models the case where the dynamic type
information is assumed to be incorrect, for example, implies that the method
- definition is overriden in a subclass. In such cases, ExprEngine does not
+ definition is overridden in a subclass. In such cases, ExprEngine does not
inline the methods sent to the receiver (MemoryRegion), even if a candidate
definition is available. This mode is conservative about simulating the
effects of a call.
More information about the cfe-commits
mailing list