diff options
| author | Redddy <78539407+reddevilmidzy@users.noreply.github.com> | 2025-03-07 00:55:24 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-07 00:55:24 +0900 |
| commit | 6b14125102ccdbcd62099a096e686dbd2f625ff1 (patch) | |
| tree | ca6acaa4ca042cd1fe69da9c610d66f7e2b81a5f | |
| parent | 30f168ef811aec63124eac677e14699baa9395bd (diff) | |
| download | rust-6b14125102ccdbcd62099a096e686dbd2f625ff1.tar.gz rust-6b14125102ccdbcd62099a096e686dbd2f625ff1.zip | |
Fix broken link to Miri intrinsics in documentation
Replaced the outdated link to https://github.com/rust-lang/miri/blob/master/src/shims/intrinsics with the correct link https://github.com/rust-lang/miri/tree/master/src/intrinsics in the library/core/src/intrinsics/mod.rs file.
| -rw-r--r-- | library/core/src/intrinsics/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/intrinsics/mod.rs b/library/core/src/intrinsics/mod.rs index 38a60338e74..c5603298a70 100644 --- a/library/core/src/intrinsics/mod.rs +++ b/library/core/src/intrinsics/mod.rs @@ -10,7 +10,7 @@ //! //! In order to make an intrinsic usable at compile-time, it needs to be declared in the "new" //! style, i.e. as a `#[rustc_intrinsic]` function, not inside an `extern` block. Then copy the -//! implementation from <https://github.com/rust-lang/miri/blob/master/src/shims/intrinsics> to +//! implementation from <https://github.com/rust-lang/miri/blob/master/src/intrinsics> to //! <https://github.com/rust-lang/rust/blob/master/compiler/rustc_const_eval/src/interpret/intrinsics.rs> //! and make the intrinsic declaration a `const fn`. //! |
