Add slice primitive link to vec
This commit is contained in:
parent
4df64905ea
commit
85146b9db7
1 changed files with 2 additions and 1 deletions
|
@ -159,7 +159,7 @@ use crate::raw_vec::RawVec;
|
|||
/// # Slicing
|
||||
///
|
||||
/// A `Vec` can be mutable. Slices, on the other hand, are read-only objects.
|
||||
/// To get a slice, use [`&`]. Example:
|
||||
/// To get a [slice], use [`&`]. Example:
|
||||
///
|
||||
/// ```
|
||||
/// fn read_slice(slice: &[usize]) {
|
||||
|
@ -287,6 +287,7 @@ use crate::raw_vec::RawVec;
|
|||
/// [`insert`]: Vec::insert
|
||||
/// [`reserve`]: Vec::reserve
|
||||
/// [owned slice]: Box
|
||||
/// [slice]: ../../std/primitive.slice.html
|
||||
/// [`&`]: ../../std/primitive.reference.html
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
#[cfg_attr(not(test), rustc_diagnostic_item = "vec_type")]
|
||||
|
|
Loading…
Add table
Reference in a new issue