-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Fix broken link to rustc_type_ir module in serialization docs #141870
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
r? @fee1-dead rustbot has assigned @fee1-dead. Use |
The rustc-dev-guide subtree was changed. If this PR only touches the dev guide consider submitting a PR directly to rust-lang/rustc-dev-guide otherwise thank you for updating the dev guide with your changes. |
r=me and errs once the suggestion is applied. |
What would you suggest doing? |
errs gave a suggestion in his review |
done, thank you! |
@bors r=fee1-dead,compiler-errors rollup |
…piler-errors Fix broken link to rustc_type_ir module in serialization docs PR fixes a broken link in the Rust compiler documentation. The original link pointed to `rustc_type_ir/codec.rs`, which no longer exists in the current compiler architecture. This functionality has been moved to the `rustc_middle` crate. The change updates the broken link: - From: https://doc.rust-lang.org/nightly/nightly-rustc/src/rustc_type_ir/codec.rs.html#21 - To: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/index.html
Rollup of 8 pull requests Successful merges: - #140638 (UnsafePinned: also include the effects of UnsafeCell) - #141272 (modularize the config module bootstrap) - #141777 (Do not run PGO/BOLT in x64 Linux alt builds) - #141870 (Fix broken link to rustc_type_ir module in serialization docs) - #141938 (update rust offload bootstrap) - #141962 (rustc-dev-guide subtree update) - #141965 (`tests/ui`: A New Order [3/N]) - #141970 (implement new `x` flag: `--skip-std-check-if-no-download-rustc`) r? `@ghost` `@rustbot` modify labels: rollup
PR fixes a broken link in the Rust compiler documentation. The original link pointed to
rustc_type_ir/codec.rs
, which no longer exists in the current compiler architecture. This functionality has been moved to therustc_middle
crate.The change updates the broken link: