File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -1274,11 +1274,10 @@ impl<T> Vec<T> {
1274
1274
/// Creates a draining iterator that removes the specified range in the vector
1275
1275
/// and yields the removed items.
1276
1276
///
1277
- /// Note 1: The element range is removed even if the iterator is only
1278
- /// partially consumed or not consumed at all.
1279
- ///
1280
- /// Note 2: It is unspecified how many elements are removed from the vector
1281
- /// if the `Drain` value is leaked.
1277
+ /// When the iterator **is** dropped, all elements in the range are removed
1278
+ /// from the vector, even if the iterator was not fully consumed. If the
1279
+ /// iterator **is not** dropped (with [`mem::forget`] for example), it is
1280
+ /// unspecified how many elements are removed.
1282
1281
///
1283
1282
/// # Panics
1284
1283
///
You can’t perform that action at this time.
0 commit comments