From 8ae636b95a5ba5f41541d23f92b3452bb5371395 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Mon, 6 Aug 2018 18:02:41 +0200 Subject: [PATCH] clarify into_inner and Drop --- text/0000-uninitialized-uninhabited.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/text/0000-uninitialized-uninhabited.md b/text/0000-uninitialized-uninhabited.md index 42118609691..7170d24c5eb 100644 --- a/text/0000-uninitialized-uninhabited.md +++ b/text/0000-uninitialized-uninhabited.md @@ -201,7 +201,9 @@ impl MaybeUninit { } } - /// Extract the value from the `MaybeUninit` container. + /// Extract the value from the `MaybeUninit` container. This is a great way + /// to ensure that the data will get dropped, because the resulting `T` is + /// subject to the usual drop handling. /// /// # Unsafety ///