We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45d05ed commit 4e17718Copy full SHA for 4e17718
crates/ra_hir_ty/src/lib.rs
@@ -1,3 +1,4 @@
1
-//! FIXME: write short doc here
+//! Work in Progress: everything related to types, type inference and trait
2
+//! solving.
3
4
pub mod primitive;
crates/ra_hir_ty/src/primitive.rs
@@ -1,4 +1,7 @@
+//! 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.
5
6
use std::fmt;
7
0 commit comments