about summary refs log tree commit diff
path: root/compiler/rustc_parse/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-10-10 21:41:02 +0000
committerbors <bors@rust-lang.org>2022-10-10 21:41:02 +0000
commit36c8e291a617ae6bd4b8ff13c54c82862eaf0eec (patch)
treeb38170662d2d265859e26ac69489240c3bea2924 /compiler/rustc_parse/src
parenta6b7274a462829f8ef08a1ddcdcec7ac80dbf3e1 (diff)
parentd565200270d425ab2d72b06109314c786676f593 (diff)
downloadrust-36c8e291a617ae6bd4b8ff13c54c82862eaf0eec.tar.gz
rust-36c8e291a617ae6bd4b8ff13c54c82862eaf0eec.zip
Auto merge of #101720 - GuillaumeGomez:warn-INVALID_HTML_TAGS, r=notriddle
Change default level of INVALID_HTML_TAGS to warning and stabilize it

Fixes of #67799.

cc `@Nemo157`
r? `@notriddle`
Diffstat (limited to 'compiler/rustc_parse/src')
-rw-r--r--compiler/rustc_parse/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/lib.rs b/compiler/rustc_parse/src/lib.rs
index 0bdfe10359c..3dcadb4c911 100644
--- a/compiler/rustc_parse/src/lib.rs
+++ b/compiler/rustc_parse/src/lib.rs
@@ -39,7 +39,8 @@ mod errors;
 // uses a HOF to parse anything, and <source> includes file and
 // `source_str`.
 
-/// A variant of 'panictry!' that works on a Vec<Diagnostic> instead of a single DiagnosticBuilder.
+/// A variant of 'panictry!' that works on a `Vec<Diagnostic>` instead of a single
+/// `DiagnosticBuilder`.
 macro_rules! panictry_buffer {
     ($handler:expr, $e:expr) => {{
         use rustc_errors::FatalError;