diff options
| author | bors <bors@rust-lang.org> | 2024-11-12 18:04:27 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-11-12 18:04:27 +0000 |
| commit | f7273e0044ad8f35ad27282e4ab776af50b61a54 (patch) | |
| tree | 1eba963b5f6af156604f649ae02a573a13ec0282 /src/librustdoc/html/render/mod.rs | |
| parent | 6503543d11583d1686d4989847b2afbec8d9fdba (diff) | |
| parent | f00a31c44de738755ed2628f00690f4b4163be4a (diff) | |
| download | rust-f7273e0044ad8f35ad27282e4ab776af50b61a54.tar.gz rust-f7273e0044ad8f35ad27282e4ab776af50b61a54.zip | |
Auto merge of #132954 - matthiaskrgr:rollup-x3rww9h, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - #131831 (extend the "if-unchanged" logic for compiler builds) - #132541 (Proper support for cross-crate recursive const stability checks) - #132657 (AIX: add run-make support) - #132901 (Warn about invalid `mir-enable-passes` pass names) - #132923 (Triagebot: Consolidate the T-compiler ad hoc assignment groups) - #132938 (Make precise capturing suggestion machine-applicable only if it has no APITs) - #132947 (clarify `must_produce_diag` ICE for debugging) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/librustdoc/html/render/mod.rs')
| -rw-r--r-- | src/librustdoc/html/render/mod.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/librustdoc/html/render/mod.rs b/src/librustdoc/html/render/mod.rs index a17c7626148..f11356b44d8 100644 --- a/src/librustdoc/html/render/mod.rs +++ b/src/librustdoc/html/render/mod.rs @@ -1011,9 +1011,7 @@ fn render_stability_since_raw_with_extra( // don't display const unstable if entirely unstable None } else { - let unstable = if let Some(n) = issue - && let Some(feature) = feature - { + let unstable = if let Some(n) = issue { format!( "<a \ href=\"https://github.com/rust-lang/rust/issues/{n}\" \ |
