Skip to content

Commit 692b572

Browse files
committedJul 5, 2017
Auto merge of #43050 - stjepang:doc-vec-fix-parens, r=frewsxcv
Minor fix in docs for Vec Added missing parentheses after `mem::size_of::<T>`.
2 parents 1421bed + 558ce91 commit 692b572

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/liballoc/vec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ use Bound::{Excluded, Included, Unbounded};
222222
/// on an empty Vec, it will not allocate memory. Similarly, if you store zero-sized
223223
/// types inside a `Vec`, it will not allocate space for them. *Note that in this case
224224
/// the `Vec` may not report a [`capacity`] of 0*. `Vec` will allocate if and only
225-
/// if [`mem::size_of::<T>`]` * capacity() > 0`. In general, `Vec`'s allocation
225+
/// if [`mem::size_of::<T>`]`() * capacity() > 0`. In general, `Vec`'s allocation
226226
/// details are subtle enough that it is strongly recommended that you only
227227
/// free memory allocated by a `Vec` by creating a new `Vec` and dropping it.
228228
///

0 commit comments

Comments
 (0)
Please sign in to comment.