summaryrefslogtreecommitdiffstats
path: root/clang/docs/tools/dump_ast_matchers.py
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2016-01-22 23:15:00 +0000
committerAaron Ballman <aaron@aaronballman.com>2016-01-22 23:15:00 +0000
commit672dde2b3e3b99cd1fb00315b8cfd7bdd4952ed6 (patch)
tree004cefa43a4a4adddce790017c4f5ff9ea2b0023 /clang/docs/tools/dump_ast_matchers.py
parentbce5d9adce9d1964658c1ea2bf88de791a7e2523 (diff)
downloadbcm5719-llvm-672dde2b3e3b99cd1fb00315b8cfd7bdd4952ed6.tar.gz
bcm5719-llvm-672dde2b3e3b99cd1fb00315b8cfd7bdd4952ed6.zip
Properly encode the &lt; entity; it was missing the semicolon. Regenerating the AST matcher reference after fixing the issue. Thanks to Richard for noticing the issue and bringing it to my attention!
llvm-svn: 258579
Diffstat (limited to 'clang/docs/tools/dump_ast_matchers.py')
-rw-r--r--clang/docs/tools/dump_ast_matchers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/docs/tools/dump_ast_matchers.py b/clang/docs/tools/dump_ast_matchers.py
index 9c05eb888c0..ccbb616d7b5 100644
--- a/clang/docs/tools/dump_ast_matchers.py
+++ b/clang/docs/tools/dump_ast_matchers.py
@@ -47,7 +47,7 @@ def esc(text):
except:
doxygen_probes[url] = False
if doxygen_probes[url]:
- return r'Matcher&lt<a href="%s">%s</a>&gt;' % (url, name)
+ return r'Matcher&lt;<a href="%s">%s</a>&gt;' % (url, name)
else:
return m.group(0)
text = re.sub(
OpenPOWER on IntegriCloud