Vec slice example fix style and show type elision

This commit is contained in:
Ivan Tham 2020-08-29 18:57:49 +08:00 committed by GitHub
parent 1dc748fb3d
commit 7148412100
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -171,7 +171,7 @@ use crate::raw_vec::RawVec;
/// ///
/// // ... and that's all! /// // ... and that's all!
/// // you can also do it like this: /// // you can also do it like this:
/// let x : &[usize] = &v; /// let u: &[usize] = &v; // or &[_]
/// ``` /// ```
/// ///
/// In Rust, it's more common to pass slices as arguments rather than vectors /// In Rust, it's more common to pass slices as arguments rather than vectors