about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndre Bogus <bogusandre@gmail.com>2019-09-28 21:02:51 +0200
committerAndre Bogus <bogusandre@gmail.com>2019-09-28 21:02:51 +0200
commite77dfa27cacd17878cf992b61c801f4c99056fad (patch)
tree86b980f5e23f9ee881f96251bc31479a5dd4c0f3
parent18f00b949615b1faa7feec95d58b087d146d3198 (diff)
downloadrust-e77dfa27cacd17878cf992b61c801f4c99056fad.tar.gz
rust-e77dfa27cacd17878cf992b61c801f4c99056fad.zip
Slice docs: fix typo
-rw-r--r--src/libstd/primitive_docs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/primitive_docs.rs b/src/libstd/primitive_docs.rs
index 02f664760c0..3e389c40fbc 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).*