rollup merge of #22128: steveklabnik/gh22085

Fixes #22085

/cc @tomjakubowski
This commit is contained in:
Alex Crichton 2015-02-10 08:43:07 -08:00
commit b0b373dce2
2 changed files with 5 additions and 0 deletions

View File

@ -141,6 +141,10 @@ pub mod hash;
pub mod fmt;
pub mod error;
#[doc(primitive = "bool")]
mod bool {
}
// note: does not need to be public
mod tuple;
mod array;

View File

@ -34,6 +34,7 @@
//! * `Default`
#![stable(feature = "rust1", since = "1.0.0")]
#![doc(primitive = "tuple")]
use clone::Clone;
use cmp::*;