From f5a398d0566cb585266778c81e2924c27e017080 Mon Sep 17 00:00:00 2001 From: Liigo Zhuang Date: Wed, 25 May 2016 10:09:20 +0800 Subject: [PATCH] Point out the clone operation in summary line docs of `Vec::extend_from_slice` --- src/libcollections/vec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs index 58d4a4ed4eb08..bd1bf6e9cc375 100644 --- a/src/libcollections/vec.rs +++ b/src/libcollections/vec.rs @@ -966,7 +966,7 @@ impl Vec { } } - /// 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.