aboutsummaryrefslogtreecommitdiff
path: root/libcollections/vec.rs
diff options
context:
space:
mode:
authorpravic <[email protected]>2016-06-06 23:07:53 +0300
committerpravic <[email protected]>2016-06-06 23:07:53 +0300
commitf2db0929feeb53567655dbdebba7e6b1c3f2f69e (patch)
treec2cf041f838782f9ddd8994146f52e8f498bfe07 /libcollections/vec.rs
parentadd 'netio' native import library (diff)
parentMerge branch 'nofp_patch' into libcore_nofp (diff)
downloadkmd-env-rs-master.tar.xz
kmd-env-rs-master.zip
Merge branch 'libcore_nofp'HEADmaster
Diffstat (limited to 'libcollections/vec.rs')
-rw-r--r--libcollections/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcollections/vec.rs b/libcollections/vec.rs
index 58d4a4e..bd1bf6e 100644
--- a/libcollections/vec.rs
+++ b/libcollections/vec.rs
@@ -966,7 +966,7 @@ impl<T: Clone> Vec<T> {
}
}
- /// Appends all elements in a slice to the `Vec`.
+ /// Clones and appends all elements in a slice to the `Vec`.
///
/// Iterates over the slice `other`, clones each element, and then appends
/// it to this `Vec`. The `other` vector is traversed in-order.