mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
Link to slice pattern in array docs
This commit is contained in:
parent
3b4797cb59
commit
a74d4e4889
@ -477,7 +477,7 @@ mod prim_pointer {}
|
||||
/// an array. Indeed, this provides most of the API for working with arrays.
|
||||
/// Slices have a dynamic size and do not coerce to arrays.
|
||||
///
|
||||
/// You can move elements out of an array with a slice pattern. If you want
|
||||
/// You can move elements out of an array with a [slice pattern]. If you want
|
||||
/// one element, see [`mem::replace`].
|
||||
///
|
||||
/// # Examples
|
||||
@ -519,7 +519,7 @@ mod prim_pointer {}
|
||||
/// for x in &array { }
|
||||
/// ```
|
||||
///
|
||||
/// You can use a slice pattern to move elements out of an array:
|
||||
/// You can use a [slice pattern] to move elements out of an array:
|
||||
///
|
||||
/// ```
|
||||
/// fn move_away(_: String) { /* Do interesting things. */ }
|
||||
@ -534,7 +534,7 @@ mod prim_pointer {}
|
||||
/// [`Hash`]: hash::Hash
|
||||
/// [`Borrow`]: borrow::Borrow
|
||||
/// [`BorrowMut`]: borrow::BorrowMut
|
||||
///
|
||||
/// [slice pattern]: ../reference/patterns.html#slice-patterns
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
mod prim_array {}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user