summaryrefslogtreecommitdiffstats
path: root/docs/LibASTMatchersReference.html
diff options
context:
space:
mode:
authorGeorge Karpenkov <ekarpenkov@apple.com>2018-07-23 22:29:10 +0000
committerGeorge Karpenkov <ekarpenkov@apple.com>2018-07-23 22:29:10 +0000
commit3787b2b6af82e095ea3d2123db225566abf957d0 (patch)
tree470dbadacecb2452d8de97d428ed503dafb99306 /docs/LibASTMatchersReference.html
parent9c96ba60ab2112270bb08d20ac18f1e135481626 (diff)
[ASTMatchers] [NFC] Regenerate HTML docs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@337760 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LibASTMatchersReference.html')
-rw-r--r--docs/LibASTMatchersReference.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/LibASTMatchersReference.html b/docs/LibASTMatchersReference.html
index a41424d89a..3a32c6ca6c 100644
--- a/docs/LibASTMatchersReference.html
+++ b/docs/LibASTMatchersReference.html
@@ -3275,9 +3275,9 @@ Example
matcher = objcMessagaeExpr(isInstanceMessage())
matches
NSString *x = @"hello";
- [x containsString:@"h"]
+ [x containsString:@"h"];
but not
- [NSString stringWithFormat:@"format"]
+ [NSString stringWithFormat:@"format"];
</pre></td></tr>
@@ -5894,7 +5894,7 @@ and the inner matcher matches on that instance.
For example the method call in
NSString *x = @"hello";
- [x containsString:@"h"]
+ [x containsString:@"h"];
is matched by
objcMessageExpr(hasReceiver(declRefExpr(to(varDecl(hasName("x"))))))
</pre></td></tr>
@@ -6564,7 +6564,7 @@ type of the matched node.
For example, in:
class A {};
using B = A;
-The matcher type(hasUnqualifeidDesugaredType(recordType())) matches
+The matcher type(hasUnqualifiedDesugaredType(recordType())) matches
both B and A.
</pre></td></tr>