diff options
| -rw-r--r-- | library/std/src/primitive_docs.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/primitive_docs.rs b/library/std/src/primitive_docs.rs index fb62c3c63ca..03eb3dd2fe6 100644 --- a/library/std/src/primitive_docs.rs +++ b/library/std/src/primitive_docs.rs @@ -565,8 +565,8 @@ mod prim_array {} /// /// *[See also the `std::slice` module](slice/index.html).* /// -/// A slice is any pointer/reference to a block of memory. They are represented -/// as a regular pointer and a length. +/// Slices are a view into a block of memory represented as a pointer and a +/// length. /// /// ``` /// // slicing a Vec |
