Skip to content

Commit

Permalink
Alloc vec doc mention cannot undo leak
Browse files Browse the repository at this point in the history
  • Loading branch information
pickfire committed Oct 10, 2020
1 parent 176b965 commit 66369a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/alloc/src/vec.rs
Expand Up @@ -1476,7 +1476,8 @@ impl<T> Vec<T> {
/// `'a`. If the type has only static references, or none at all, then this
/// may be chosen to be `'static`.
///
/// This function is similar to the [`leak`][Box::leak] function on [`Box`].
/// This function is similar to the [`leak`][Box::leak] function on [`Box`]
/// except there are no way to undo the leak yet.
///
/// This function is mainly useful for data that lives for the remainder of
/// the program's life. Dropping the returned reference will cause a memory
Expand Down

0 comments on commit 66369a6

Please sign in to comment.