Fix typo in docs of std::mem

This commit is contained in:
ivan tkachenko 2020-06-15 22:08:56 +03:00
parent f315c35a77
commit 71c54db3dc
No known key found for this signature in database
GPG Key ID: 4D197017E61437CF
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ pub use crate::intrinsics::transmute;
/// erring on the side of (double-)dropping.
///
/// Also, `ManuallyDrop` prevents us from having to "touch" `v` after transferring the
/// ownership to `s` - the final step of interacting with `v` to dispoe of it without
/// ownership to `s` — the final step of interacting with `v` to dispose of it without
/// running its destructor is entirely avoided.
///
/// [drop]: fn.drop.html