Rollup merge of #73614 - lcnr:patch-4, r=Dylan-DPC

fix `intrinsics::needs_drop` docs
This commit is contained in:
Manish Goregaokar 2020-06-23 13:10:15 -07:00 committed by GitHub
commit f7d5687eba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1291,7 +1291,7 @@ extern "rust-intrinsic" {
/// implements `Copy`.
///
/// If the actual type neither requires drop glue nor implements
/// `Copy`, then may return `true` or `false`.
/// `Copy`, then the return value of this function is unspecified.
///
/// The stabilized version of this intrinsic is
/// [`std::mem::needs_drop`](../../std/mem/fn.needs_drop.html).