core: add a primitive page for ().

This commit is contained in:
Huon Wilson
2014-07-02 10:21:15 +10:00
parent f89cc11827
commit 7c92735f08
4 changed files with 53 additions and 0 deletions

View File

@@ -122,6 +122,10 @@ pub mod simd;
pub mod slice;
pub mod str;
pub mod tuple;
// FIXME #15320: primitive documentation needs top-level modules, this
// should be `core::tuple::unit`.
#[path = "tuple/unit.rs"]
pub mod unit;
pub mod fmt;
#[doc(hidden)]