Rollup merge of #64880 - llogiq:slice-docs, r=Centril

Slice docs: fix typo

With #64703, I introduced a typo. Here is the fix. Sorry for the inconvenience.
This commit is contained in:
Mazdak Farrokhzad 2019-09-28 22:12:11 +02:00 committed by GitHub
commit 46526718b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -567,7 +567,7 @@ mod prim_array { }
#[doc(alias = "]")]
#[doc(alias = "[]")]
/// A dynamically-sized view into a contiguous sequence, `[T]`. Contiguous here
/// means that elements are layed out so that every element is the same
/// means that elements are laid out so that every element is the same
/// distance from its neighbors.
///
/// *[See also the `std::slice` module](slice/index.html).*