Remove doc-comment default::Default imports

In 8f5b5f94dc, `default::Default` was
added to the prelude, so these imports are no longer necessary.
This commit is contained in:
Corey Farwell
2015-04-22 09:42:36 -04:00
parent e9e9279d87
commit 68989918d2
3 changed files with 0 additions and 12 deletions

View File

@@ -43,8 +43,6 @@
//! Using traits implemented for tuples:
//!
//! ```
//! use std::default::Default;
//!
//! let a = (1, 2);
//! let b = (3, 4);
//! assert!(a != b);