Nit: Remove leading whitespace
This commit is contained in:
parent
57f7f22fe4
commit
c95fba7b5b
1 changed files with 2 additions and 2 deletions
|
|
@ -1541,7 +1541,7 @@ impl<T> [T] {
|
|||
/// let src = [1, 2, 3, 4];
|
||||
/// let mut dst = [0, 0];
|
||||
///
|
||||
/// // Note: the slices must be the same length, so you can slice the
|
||||
/// // Note: the slices must be the same length, so you can slice the
|
||||
/// // source to be the same size. Here we slice the source, four elements,
|
||||
/// // to two, the same size as the destination slice. It *will* panic if we don't do this.
|
||||
/// dst.clone_from_slice(&src[2..]);
|
||||
|
|
@ -1610,7 +1610,7 @@ impl<T> [T] {
|
|||
/// let src = [1, 2, 3, 4];
|
||||
/// let mut dst = [0, 0];
|
||||
///
|
||||
/// // Note: the slices must be the same length, so you can slice the
|
||||
/// // Note: the slices must be the same length, so you can slice the
|
||||
/// // source to be the same size. Here we slice the source, four elements,
|
||||
/// // to two, the same size as the destination slice. It *will* panic if we don't do this.
|
||||
/// dst.copy_from_slice(&src[2..]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue