@@ -34,8 +34,8 @@ use crate::slice::{self, SliceIndex};
34
34
/// it is your responsibility to ensure that `as_mut` is never called, and `as_ptr`
35
35
/// is never used for mutation.
36
36
///
37
- /// [`PhantomData`]: ../ marker/struct. PhantomData.html
38
- /// [`UnsafeCell<T>`]: ../ cell/struct. UnsafeCell.html
37
+ /// [`PhantomData`]: crate:: marker:: PhantomData
38
+ /// [`UnsafeCell<T>`]: crate:: cell:: UnsafeCell
39
39
#[ stable( feature = "nonnull" , since = "1.25.0" ) ]
40
40
#[ repr( transparent) ]
41
41
#[ rustc_layout_scalar_valid_range_start( 1 ) ]
@@ -82,8 +82,8 @@ impl<T: Sized> NonNull<T> {
82
82
///
83
83
/// For the mutable counterpart see [`as_uninit_mut`].
84
84
///
85
- /// [`as_ref`]: #method. as_ref
86
- /// [`as_uninit_mut`]: #method. as_uninit_mut
85
+ /// [`as_ref`]: NonNull:: as_ref
86
+ /// [`as_uninit_mut`]: NonNull:: as_uninit_mut
87
87
///
88
88
/// # Safety
89
89
///
@@ -114,8 +114,8 @@ impl<T: Sized> NonNull<T> {
114
114
///
115
115
/// For the shared counterpart see [`as_uninit_ref`].
116
116
///
117
- /// [`as_mut`]: #method. as_mut
118
- /// [`as_uninit_ref`]: #method. as_uninit_ref
117
+ /// [`as_mut`]: NonNull:: as_mut
118
+ /// [`as_uninit_ref`]: NonNull:: as_uninit_ref
119
119
///
120
120
/// # Safety
121
121
///
@@ -181,8 +181,8 @@ impl<T: ?Sized> NonNull<T> {
181
181
///
182
182
/// For the mutable counterpart see [`as_mut`].
183
183
///
184
- /// [`as_uninit_ref`]: #method. as_uninit_ref
185
- /// [`as_mut`]: #method. as_mut
184
+ /// [`as_uninit_ref`]: NonNull:: as_uninit_ref
185
+ /// [`as_mut`]: NonNull:: as_mut
186
186
///
187
187
/// # Safety
188
188
///
@@ -217,8 +217,8 @@ impl<T: ?Sized> NonNull<T> {
217
217
///
218
218
/// For the shared counterpart see [`as_ref`].
219
219
///
220
- /// [`as_uninit_mut`]: #method. as_uninit_mut
221
- /// [`as_ref`]: #method. as_ref
220
+ /// [`as_uninit_mut`]: NonNull:: as_uninit_mut
221
+ /// [`as_ref`]: NonNull:: as_ref
222
222
///
223
223
/// # Safety
224
224
///
@@ -266,8 +266,6 @@ impl<T> NonNull<[T]> {
266
266
/// This function is safe, but dereferencing the return value is unsafe.
267
267
/// See the documentation of [`slice::from_raw_parts`] for slice safety requirements.
268
268
///
269
- /// [`slice::from_raw_parts`]: ../../std/slice/fn.from_raw_parts.html
270
- ///
271
269
/// # Examples
272
270
///
273
271
/// ```rust
@@ -357,8 +355,8 @@ impl<T> NonNull<[T]> {
357
355
///
358
356
/// For the mutable counterpart see [`as_uninit_slice_mut`].
359
357
///
360
- /// [`as_ref`]: #method. as_ref
361
- /// [`as_uninit_slice_mut`]: #method. as_uninit_slice_mut
358
+ /// [`as_ref`]: NonNull:: as_ref
359
+ /// [`as_uninit_slice_mut`]: NonNull:: as_uninit_slice_mut
362
360
///
363
361
/// # Safety
364
362
///
@@ -386,10 +384,9 @@ impl<T> NonNull<[T]> {
386
384
///
387
385
/// This applies even if the result of this method is unused!
388
386
///
389
- /// See also [`slice::from_raw_parts`][] .
387
+ /// See also [`slice::from_raw_parts`].
390
388
///
391
389
/// [valid]: crate::ptr#safety
392
- /// [`NonNull::dangling()`]: NonNull::dangling
393
390
/// [`pointer::offset`]: ../../std/primitive.pointer.html#method.offset
394
391
#[ inline]
395
392
#[ unstable( feature = "ptr_as_uninit" , issue = "75402" ) ]
@@ -403,8 +400,8 @@ impl<T> NonNull<[T]> {
403
400
///
404
401
/// For the shared counterpart see [`as_uninit_slice`].
405
402
///
406
- /// [`as_mut`]: #method. as_mut
407
- /// [`as_uninit_slice`]: #method. as_uninit_slice
403
+ /// [`as_mut`]: NonNull:: as_mut
404
+ /// [`as_uninit_slice`]: NonNull:: as_uninit_slice
408
405
///
409
406
/// # Safety
410
407
///
@@ -432,10 +429,9 @@ impl<T> NonNull<[T]> {
432
429
///
433
430
/// This applies even if the result of this method is unused!
434
431
///
435
- /// See also [`slice::from_raw_parts_mut`][] .
432
+ /// See also [`slice::from_raw_parts_mut`].
436
433
///
437
434
/// [valid]: crate::ptr#safety
438
- /// [`NonNull::dangling()`]: NonNull::dangling
439
435
/// [`pointer::offset`]: ../../std/primitive.pointer.html#method.offset
440
436
///
441
437
/// # Examples
0 commit comments