Doc primitives

This commit is contained in:
Aleksey Kladov 2019-11-26 15:40:55 +03:00
parent 45d05ed783
commit 4e17718a9a
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,4 @@
//! FIXME: write short doc here
//! Work in Progress: everything related to types, type inference and trait
//! solving.
pub mod primitive;

View File

@ -1,4 +1,7 @@
//! FIXME: write short doc here
//! Defines primitive types, which have a couple of peculiarities:
//!
//! * during type inference, they can be uncertain (ie, `let x = 92;`)
//! * they don't belong to any particular crate.
use std::fmt;