We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7482e5b commit f92d294Copy full SHA for f92d294
src/librustdoc/passes/html_tags.rs
@@ -22,10 +22,8 @@ struct InvalidHtmlTagsLinter<'a, 'tcx> {
22
}
23
24
pub(crate) fn check_invalid_html_tags(krate: Crate, cx: &mut DocContext<'_>) -> Crate {
25
- if cx.tcx.sess.is_nightly_build() {
26
- let mut coll = InvalidHtmlTagsLinter { cx };
27
- coll.visit_crate(&krate);
28
- }
+ let mut coll = InvalidHtmlTagsLinter { cx };
+ coll.visit_crate(&krate);
29
krate
30
31
0 commit comments