diff options
| author | bors <bors@rust-lang.org> | 2025-05-20 23:18:26 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-05-20 23:18:26 +0000 |
| commit | 2b96ddca1272960623e41829439df8dae82d20af (patch) | |
| tree | d2a860a23bcf56d5bf357061be1c119bcc17e8f3 /src/doc | |
| parent | bc821528634632b4ff8dee5ac1ea4ad90d1b3eb5 (diff) | |
| parent | 13f3f3184033fda51c31ba6b7b15a4f9868e4c88 (diff) | |
| download | rust-2b96ddca1272960623e41829439df8dae82d20af.tar.gz rust-2b96ddca1272960623e41829439df8dae82d20af.zip | |
Auto merge of #141305 - matthiaskrgr:rollup-l6nwaht, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - #140972 (Add TRACING_ENABLED to Machine and add enter_trace_span!()) - #141282 (`core_float_math`: Move functions to `math` module) - #141288 (Get rid of unnecessary `BufDisplay` abstraction) - #141289 (use `Self` alias in self types rather than manually substituting it) - #141291 (link tracking issue in explicit-extern-abis.md) - #141294 (triagebot: ping me if rustdoc js is modified) - #141303 (Fix pagetoc inactive color in rustc book) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/doc')
| -rw-r--r-- | src/doc/rustc/theme/pagetoc.css | 2 | ||||
| -rw-r--r-- | src/doc/unstable-book/src/language-features/explicit-extern-abis.md | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/doc/rustc/theme/pagetoc.css b/src/doc/rustc/theme/pagetoc.css index 58ca1f8b26f..fa709194f37 100644 --- a/src/doc/rustc/theme/pagetoc.css +++ b/src/doc/rustc/theme/pagetoc.css @@ -49,7 +49,7 @@ } #pagetoc a { border-left: 1px solid var(--sidebar-bg); - color: var(--sidebar-fg) !important; + color: var(--fg); display: block; padding-bottom: 5px; padding-top: 5px; diff --git a/src/doc/unstable-book/src/language-features/explicit-extern-abis.md b/src/doc/unstable-book/src/language-features/explicit-extern-abis.md index ba622466ba7..7728f6725b1 100644 --- a/src/doc/unstable-book/src/language-features/explicit-extern-abis.md +++ b/src/doc/unstable-book/src/language-features/explicit-extern-abis.md @@ -1,6 +1,6 @@ # `explicit_extern_abis` -The tracking issue for this feature is: #134986 +The tracking issue for this feature is: [#134986] ------ @@ -21,3 +21,5 @@ extern "C" fn function2() {} // compiles extern "aapcs" fn function3() {} // compiles ``` + +[#134986]: https://github.com/rust-lang/rust/issues/134986 |
