@@ -315,7 +315,7 @@ pub fn run_core(options: RustdocOptions) -> (clean::Crate, RenderInfo, RenderOpt
315315 let missing_doc_example = rustc_lint:: builtin:: MISSING_DOC_CODE_EXAMPLES . name ;
316316 let private_doc_tests = rustc_lint:: builtin:: PRIVATE_DOC_TESTS . name ;
317317 let no_crate_level_docs = rustc_lint:: builtin:: MISSING_CRATE_LEVEL_DOCS . name ;
318- let invalid_codeblock_attribute_name = rustc_lint:: builtin:: INVALID_CODEBLOCK_ATTRIBUTES . name ;
318+ let invalid_codeblock_attributes_name = rustc_lint:: builtin:: INVALID_CODEBLOCK_ATTRIBUTES . name ;
319319
320320 // In addition to those specific lints, we also need to allow those given through
321321 // command line, otherwise they'll get ignored and we don't want that.
@@ -325,12 +325,12 @@ pub fn run_core(options: RustdocOptions) -> (clean::Crate, RenderInfo, RenderOpt
325325 missing_doc_example. to_owned( ) ,
326326 private_doc_tests. to_owned( ) ,
327327 no_crate_level_docs. to_owned( ) ,
328- invalid_codeblock_attribute_name . to_owned( ) ,
328+ invalid_codeblock_attributes_name . to_owned( ) ,
329329 ] ;
330330
331331 let ( lint_opts, lint_caps) = init_lints ( allowed_lints, lint_opts, |lint| {
332332 if lint. name == intra_link_resolution_failure_name
333- || lint. name == invalid_codeblock_attribute_name
333+ || lint. name == invalid_codeblock_attributes_name
334334 {
335335 None
336336 } else {
0 commit comments