]> granicus.if.org Git - clang/commitdiff
Fix a typo in the doc: overriden -> overridden
authorSylvestre Ledru <sylvestre@debian.org>
Sun, 28 Aug 2016 20:22:34 +0000 (20:22 +0000)
committerSylvestre Ledru <sylvestre@debian.org>
Sun, 28 Aug 2016 20:22:34 +0000 (20:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@279942 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LibASTMatchersReference.html
docs/analyzer/IPA.txt

index abfa70458e8fb56c91936dbe94f46383d1e03429..662bfd94e18d97f907a3c4f685446b1b08b0944e 100644 (file)
@@ -4092,7 +4092,7 @@ matcher, or is a pointer to a type that matches the InnerMatcher.
 
 
 <tr><td>Matcher&lt;<a href="http://clang.llvm.org/doxygen/classclang_1_1CXXMethodDecl.html">CXXMethodDecl</a>&gt;</td><td class="name" onclick="toggle('forEachOverridden0')"><a name="forEachOverridden0Anchor">forEachOverridden</a></td><td>Matcher&lt;<a href="http://clang.llvm.org/doxygen/classclang_1_1CXXMethodDecl.html">CXXMethodDecl</a>&gt; 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
index 14da71e090304f9f75c61b35390a8d2df5bfacac..3842075fcd6a40c0054fe56b9613db02bbdb53a3 100644 (file)
@@ -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.