diff options
| author | kennytm <kennytm@gmail.com> | 2018-05-26 19:32:29 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-26 19:32:29 +0800 |
| commit | 18028eb217a19fbff24776e8f4e84899affa4eeb (patch) | |
| tree | 50a195376e909f36505314394efde082189a2d30 /src/libcore | |
| parent | 5d95492d3a50479b48090e06f6d4211fb6a7880f (diff) | |
| parent | 37cbd11a9f864f6747ed9b4a3aab4c59ca2bae81 (diff) | |
| download | rust-18028eb217a19fbff24776e8f4e84899affa4eeb.tar.gz rust-18028eb217a19fbff24776e8f4e84899affa4eeb.zip | |
Rollup merge of #51065 - mbrubeck:docs, r=rkruppe
Update nomicon link in transmute docs The list of "invalid primitive values" has moved to a different URL within the Rustonomicon.
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/intrinsics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/intrinsics.rs b/src/libcore/intrinsics.rs index 2e3f5cb65c9..95f13daf841 100644 --- a/src/libcore/intrinsics.rs +++ b/src/libcore/intrinsics.rs @@ -717,7 +717,7 @@ extern "rust-intrinsic" { /// Reinterprets the bits of a value of one type as another type. /// /// Both types must have the same size. Neither the original, nor the result, - /// may be an [invalid value](../../nomicon/meet-safe-and-unsafe.html). + /// may be an [invalid value](../../nomicon/what-unsafe-does.html). /// /// `transmute` is semantically equivalent to a bitwise move of one type /// into another. It copies the bits from the source value into the |
