Revert changed paragraph about slice definition.

This reverts part of commit e6c83dd57b.
As requested by @steveklabnik .
This commit is contained in:
Leon Matthes 2020-08-23 16:02:22 +02:00
parent 41d3e1cf73
commit cf76256b83

View file

@ -565,8 +565,8 @@ mod prim_array {}
/// ///
/// *[See also the `std::slice` module](slice/index.html).* /// *[See also the `std::slice` module](slice/index.html).*
/// ///
/// A slice is any pointer/reference to a block of memory. They are represented /// Slices are a view into a block of memory represented as a pointer and a
/// as a regular pointer and a length. /// length.
/// ///
/// ``` /// ```
/// // slicing a Vec /// // slicing a Vec