diff options
| author | Scott Whittaker <scottrobertwhittaker@gmail.com> | 2016-02-10 22:28:32 -0500 |
|---|---|---|
| committer | Scott Whittaker <scottrobertwhittaker@gmail.com> | 2016-02-10 22:30:46 -0500 |
| commit | c64088588a3f456b056b559a017850af39c5ff0a (patch) | |
| tree | 7458e39709e79a3be94147b4428b6bc446e9b3bb | |
| parent | 3f4227af139f1da30710a9f07dc28e5a3ccc6fe5 (diff) | |
| download | rust-c64088588a3f456b056b559a017850af39c5ff0a.tar.gz rust-c64088588a3f456b056b559a017850af39c5ff0a.zip | |
mod.rs: fix typo
"destructors" was misspelled.
| -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. |
