From e77dfa27cacd17878cf992b61c801f4c99056fad Mon Sep 17 00:00:00 2001 From: Andre Bogus Date: Sat, 28 Sep 2019 21:02:51 +0200 Subject: [PATCH] Slice docs: fix typo --- src/libstd/primitive_docs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/primitive_docs.rs b/src/libstd/primitive_docs.rs index 02f664760c08c..3e389c40fbc01 100644 --- a/src/libstd/primitive_docs.rs +++ b/src/libstd/primitive_docs.rs @@ -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).*