Set up docs for missing core types

Fixes 
This commit is contained in:
Steve Klabnik 2015-02-09 21:44:11 -05:00
parent 012e9643e4
commit 17abb43248
2 changed files with 5 additions and 0 deletions
src/libcore

@ -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;

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