diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2016-02-14 03:59:09 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2016-02-14 05:06:32 +0530 |
| commit | 302e5cb232049d73604e2a34c5f455a523de656c (patch) | |
| tree | 4372e460e5249bb8ca8da4c934e3a5e22e999b80 /src/libstd | |
| parent | 42d17cc7cd4657f727403fd77cd1c0fb070383ca (diff) | |
| parent | c64088588a3f456b056b559a017850af39c5ff0a (diff) | |
| download | rust-302e5cb232049d73604e2a34c5f455a523de656c.tar.gz rust-302e5cb232049d73604e2a34c5f455a523de656c.zip | |
Rollup merge of #31559 - scottrobertwhittaker:fix-typo, r=steveklabnik
"destructors" was misspelled. r? @steveklabnik
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/prelude/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/prelude/mod.rs b/src/libstd/prelude/mod.rs index a0db471dece..ebd299efa78 100644 --- a/src/libstd/prelude/mod.rs +++ b/src/libstd/prelude/mod.rs @@ -55,7 +55,7 @@ //! * [`std::marker`]::{[`Copy`], [`Send`], [`Sized`], [`Sync`]}. The marker //! traits indicate fundamental properties of types. //! * [`std::ops`]::{[`Drop`], [`Fn`], [`FnMut`], [`FnOnce`]}. Various -//! operations for both destuctors and overloading `()`. +//! operations for both destructors and overloading `()`. //! * [`std::mem`]::[`drop`], a convenience function for explicitly dropping a //! value. //! * [`std::boxed`]::[`Box`], a way to allocate values on the heap. |
