Skip to content

Commit 3b89679

Browse files
Adjust documentation for compatibility with 2021
This also adjusts the lint docs generation to accept (and ignore) an allow attribute, rather than expecting the documentation to be immediately followed by the lint name.
1 parent f338900 commit 3b89679

File tree

7 files changed

+35
-28
lines changed

7 files changed

+35
-28
lines changed

compiler/rustc_lint/src/array_into_iter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ declare_lint! {
1313
///
1414
/// ### Example
1515
///
16-
/// ```rust
16+
/// ```rust,edition2018
1717
/// # #![allow(unused)]
1818
/// [1, 2, 3].into_iter().for_each(|n| { *n; });
1919
/// ```

compiler/rustc_lint/src/builtin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1686,7 +1686,7 @@ declare_lint! {
16861686
///
16871687
/// ### Example
16881688
///
1689-
/// ```rust
1689+
/// ```rust,edition2018
16901690
/// let x = 123;
16911691
/// match x {
16921692
/// 0...100 => {}

compiler/rustc_lint/src/non_fmt_panic.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ declare_lint! {
1818
///
1919
/// ### Example
2020
///
21-
/// ```rust,no_run
21+
/// ```rust,no_run,edition2018
2222
/// panic!("{}");
2323
/// panic!(123);
2424
/// ```

compiler/rustc_lint_defs/src/builtin.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1584,7 +1584,7 @@ declare_lint! {
15841584
///
15851585
/// ### Example
15861586
///
1587-
/// ```rust
1587+
/// ```rust,edition2018
15881588
/// trait Trait { }
15891589
///
15901590
/// fn takes_trait_object(_: Box<Trait>) {
@@ -3313,7 +3313,7 @@ declare_lint! {
33133313
///
33143314
/// ### Example
33153315
///
3316-
/// ```rust,compile_fail
3316+
/// ```rust,edition2018,compile_fail
33173317
/// #![deny(rust_2021_prefixes_incompatible_syntax)]
33183318
///
33193319
/// macro_rules! m {
@@ -3333,6 +3333,8 @@ declare_lint! {
33333333
///
33343334
/// This lint suggests to add whitespace between the `z` and `"hey"` tokens
33353335
/// to keep them separated in Rust 2021.
3336+
// Allow this lint -- rustdoc doesn't yet support threading edition into this lint's parser.
3337+
#[allow(rustdoc::invalid_rust_codeblocks)]
33363338
pub RUST_2021_PREFIXES_INCOMPATIBLE_SYNTAX,
33373339
Allow,
33383340
"identifiers that will be parsed as a prefix in Rust 2021",

compiler/rustc_metadata/src/dependency_format.rs

+22-22
Original file line numberDiff line numberDiff line change
@@ -11,35 +11,35 @@
1111
//! should be used when linking each output type requested in this session. This
1212
//! generally follows this set of rules:
1313
//!
14-
//! 1. Each library must appear exactly once in the output.
15-
//! 2. Each rlib contains only one library (it's just an object file)
16-
//! 3. Each dylib can contain more than one library (due to static linking),
17-
//! and can also bring in many dynamic dependencies.
14+
//! 1. Each library must appear exactly once in the output.
15+
//! 2. Each rlib contains only one library (it's just an object file)
16+
//! 3. Each dylib can contain more than one library (due to static linking),
17+
//! and can also bring in many dynamic dependencies.
1818
//!
1919
//! With these constraints in mind, it's generally a very difficult problem to
2020
//! find a solution that's not "all rlibs" or "all dylibs". I have suspicions
2121
//! that NP-ness may come into the picture here...
2222
//!
2323
//! The current selection algorithm below looks mostly similar to:
2424
//!
25-
//! 1. If static linking is required, then require all upstream dependencies
26-
//! to be available as rlibs. If not, generate an error.
27-
//! 2. If static linking is requested (generating an executable), then
28-
//! attempt to use all upstream dependencies as rlibs. If any are not
29-
//! found, bail out and continue to step 3.
30-
//! 3. Static linking has failed, at least one library must be dynamically
31-
//! linked. Apply a heuristic by greedily maximizing the number of
32-
//! dynamically linked libraries.
33-
//! 4. Each upstream dependency available as a dynamic library is
34-
//! registered. The dependencies all propagate, adding to a map. It is
35-
//! possible for a dylib to add a static library as a dependency, but it
36-
//! is illegal for two dylibs to add the same static library as a
37-
//! dependency. The same dylib can be added twice. Additionally, it is
38-
//! illegal to add a static dependency when it was previously found as a
39-
//! dylib (and vice versa)
40-
//! 5. After all dynamic dependencies have been traversed, re-traverse the
41-
//! remaining dependencies and add them statically (if they haven't been
42-
//! added already).
25+
//! 1. If static linking is required, then require all upstream dependencies
26+
//! to be available as rlibs. If not, generate an error.
27+
//! 2. If static linking is requested (generating an executable), then
28+
//! attempt to use all upstream dependencies as rlibs. If any are not
29+
//! found, bail out and continue to step 3.
30+
//! 3. Static linking has failed, at least one library must be dynamically
31+
//! linked. Apply a heuristic by greedily maximizing the number of
32+
//! dynamically linked libraries.
33+
//! 4. Each upstream dependency available as a dynamic library is
34+
//! registered. The dependencies all propagate, adding to a map. It is
35+
//! possible for a dylib to add a static library as a dependency, but it
36+
//! is illegal for two dylibs to add the same static library as a
37+
//! dependency. The same dylib can be added twice. Additionally, it is
38+
//! illegal to add a static dependency when it was previously found as a
39+
//! dylib (and vice versa)
40+
//! 5. After all dynamic dependencies have been traversed, re-traverse the
41+
//! remaining dependencies and add them statically (if they haven't been
42+
//! added already).
4343
//!
4444
//! While not perfect, this algorithm should help support use-cases such as leaf
4545
//! dependencies being static while the larger tree of inner dependencies are

compiler/rustc_middle/src/middle/region.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,8 @@ pub struct ScopeTree {
257257
/// ```
258258
///
259259
/// With the HIR tree (calls numbered for expository purposes)
260-
/// ```
260+
///
261+
/// ```text
261262
/// Call#0(foo, [Call#1(f), Yield(y), Call#2(bar, Call#3(g))])
262263
/// ```
263264
///

src/tools/lint-docs/src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,10 @@ impl<'a> LintExtractor<'a> {
149149
} else if line.starts_with("// ") {
150150
// Ignore comments.
151151
continue;
152+
} else if line.starts_with("#[allow") {
153+
// Ignore allow of lints (useful for
154+
// invalid_rust_codeblocks).
155+
continue;
152156
} else {
153157
let name = lint_name(line).map_err(|e| {
154158
format!(

0 commit comments

Comments
 (0)