diff options
| author | Henry Boisdequin <boisdequinhenry19@gmail.com> | 2021-03-13 07:58:03 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-13 07:58:03 +0530 |
| commit | 81d1d8259611f8ab6f83afe465ea21a5aa87bcc2 (patch) | |
| tree | 1a24f56cbb09f77d4c2a44c3e1424cdeecd0431a | |
| parent | 46a934a1dc789b9441e5fb5cd043287baddcc5c7 (diff) | |
| download | rust-81d1d8259611f8ab6f83afe465ea21a5aa87bcc2.tar.gz rust-81d1d8259611f8ab6f83afe465ea21a5aa87bcc2.zip | |
Update `Vec` docs
| -rw-r--r-- | library/alloc/src/vec/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/alloc/src/vec/mod.rs b/library/alloc/src/vec/mod.rs index 0028e290fac..f59e363e175 100644 --- a/library/alloc/src/vec/mod.rs +++ b/library/alloc/src/vec/mod.rs @@ -126,7 +126,7 @@ use self::spec_extend::SpecExtend; mod spec_extend; -/// A contiguous growable array type, written `Vec<T>` but pronounced 'vector'. +/// A contiguous growable array type, written as `Vec<T>` and pronounced 'vector'. /// /// # Examples /// @@ -215,7 +215,7 @@ mod spec_extend; /// /// # Slicing /// -/// A `Vec` can be mutable. Slices, on the other hand, are read-only objects. +/// A `Vec` can be mutable. On the other hand, slices are read-only objects. /// To get a [slice][prim@slice], use [`&`]. Example: /// /// ``` @@ -352,7 +352,7 @@ mod spec_extend; /// not break, however: using `unsafe` code to write to the excess capacity, /// and then increasing the length to match, is always valid. /// -/// `Vec` does not currently guarantee the order in which elements are dropped. +/// Currently, `Vec` does not guarantee the order in which elements are dropped. /// The order has changed in the past and may change again. /// /// [`get`]: ../../std/vec/struct.Vec.html#method.get |
