Add missing word in Box::from_unique docs

This commit is contained in:
Nikolai Vazquez 2017-10-06 17:39:38 -04:00
parent 5ce5b2fe76
commit 5af88ee996

View File

@ -274,8 +274,8 @@ impl<T: ?Sized> Box<T> {
/// Constructs a `Box` from a `Unique<T>` pointer.
///
/// After calling this function, the memory is owned by a `Box` and `T` then
/// be destroyed and released upon drop.
/// After calling this function, the memory is owned by a `Box` and `T` can
/// then be destroyed and released upon drop.
///
/// # Safety
///