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 c23ed65 commit d9570e0Copy full SHA for d9570e0
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