File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ use self::spec_extend::SpecExtend;
126
126
127
127
mod spec_extend;
128
128
129
- /// A contiguous growable array type, written `Vec<T>` but pronounced 'vector'.
129
+ /// A contiguous growable array type, written as `Vec<T>` and pronounced 'vector'.
130
130
///
131
131
/// # Examples
132
132
///
@@ -215,7 +215,7 @@ mod spec_extend;
215
215
///
216
216
/// # Slicing
217
217
///
218
- /// A `Vec` can be mutable. Slices, on the other hand, are read-only objects.
218
+ /// A `Vec` can be mutable. On the other hand, slices are read-only objects.
219
219
/// To get a [slice][prim@slice], use [`&`]. Example:
220
220
///
221
221
/// ```
@@ -352,7 +352,7 @@ mod spec_extend;
352
352
/// not break, however: using `unsafe` code to write to the excess capacity,
353
353
/// and then increasing the length to match, is always valid.
354
354
///
355
- /// `Vec` does not currently guarantee the order in which elements are dropped.
355
+ /// Currently, `Vec` does not guarantee the order in which elements are dropped.
356
356
/// The order has changed in the past and may change again.
357
357
///
358
358
/// [`get`]: ../../std/vec/struct.Vec.html#method.get
You can’t perform that action at this time.
0 commit comments