File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -985,7 +985,7 @@ extern "rust-intrinsic" {
985
985
/// Drop glue is not run on the destination.
986
986
///
987
987
/// The stabilized version of this intrinsic is
988
- /// [`std::ptr::write`](../../std/ ptr/fn. write.html ).
988
+ /// [`std::ptr::write`](crate:: ptr:: write).
989
989
pub fn move_val_init < T > ( dst : * mut T , src : T ) ;
990
990
991
991
/// The minimum alignment of a type.
@@ -1372,12 +1372,12 @@ extern "rust-intrinsic" {
1372
1372
/// Performs a volatile load from the `src` pointer.
1373
1373
///
1374
1374
/// The stabilized version of this intrinsic is
1375
- /// [`std::ptr::read_volatile`](../../std/ ptr/fn. read_volatile.html ).
1375
+ /// [`std::ptr::read_volatile`](crate:: ptr:: read_volatile).
1376
1376
pub fn volatile_load < T > ( src : * const T ) -> T ;
1377
1377
/// Performs a volatile store to the `dst` pointer.
1378
1378
///
1379
1379
/// The stabilized version of this intrinsic is
1380
- /// [`std::ptr::write_volatile`](../../std/ ptr/fn. write_volatile.html ).
1380
+ /// [`std::ptr::write_volatile`](crate:: ptr:: write_volatile).
1381
1381
pub fn volatile_store < T > ( dst : * mut T , val : T ) ;
1382
1382
1383
1383
/// Performs a volatile load from the `src` pointer
You can’t perform that action at this time.
0 commit comments