Skip to content

Commit daac52c

Browse files
author
George Karpenkov
committed
[ASTMatchers] [NFC] Regenerate HTML docs.
llvm-svn: 337760
1 parent 28e08a0 commit daac52c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clang/docs/LibASTMatchersReference.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3275,9 +3275,9 @@ <h2 id="narrowing-matchers">Narrowing Matchers</h2>
32753275
matcher = objcMessagaeExpr(isInstanceMessage())
32763276
matches
32773277
NSString *x = @"hello";
3278-
[x containsString:@"h"]
3278+
[x containsString:@"h"];
32793279
but not
3280-
[NSString stringWithFormat:@"format"]
3280+
[NSString stringWithFormat:@"format"];
32813281
</pre></td></tr>
32823282

32833283

@@ -5894,7 +5894,7 @@ <h2 id="traversal-matchers">AST Traversal Matchers</h2>
58945894

58955895
For example the method call in
58965896
NSString *x = @"hello";
5897-
[x containsString:@"h"]
5897+
[x containsString:@"h"];
58985898
is matched by
58995899
objcMessageExpr(hasReceiver(declRefExpr(to(varDecl(hasName("x"))))))
59005900
</pre></td></tr>
@@ -6564,7 +6564,7 @@ <h2 id="traversal-matchers">AST Traversal Matchers</h2>
65646564
For example, in:
65656565
class A {};
65666566
using B = A;
6567-
The matcher type(hasUnqualifeidDesugaredType(recordType())) matches
6567+
The matcher type(hasUnqualifiedDesugaredType(recordType())) matches
65686568
both B and A.
65696569
</pre></td></tr>
65706570

0 commit comments

Comments
 (0)