From 410ce8628205d019b9ed82e075b3bfa8236b7a1f Mon Sep 17 00:00:00 2001
From: Andre Bogus <bogusandre@gmail.com>
Date: Mon, 23 Sep 2019 09:28:31 +0200
Subject: [PATCH] Docs: slice elements are equidistant

---
 src/libstd/primitive_docs.rs | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/libstd/primitive_docs.rs b/src/libstd/primitive_docs.rs
index 45816ffd229f0..c54dca7e38a46 100644
--- a/src/libstd/primitive_docs.rs
+++ b/src/libstd/primitive_docs.rs
@@ -566,7 +566,9 @@ mod prim_array { }
 #[doc(alias = "[")]
 #[doc(alias = "]")]
 #[doc(alias = "[]")]
-/// A dynamically-sized view into a contiguous sequence, `[T]`.
+/// A dynamically-sized view into a contiguous sequence, `[T]`. Contiguous here
+/// 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).*
 ///