diff --git a/compiler/cl-typeck/src/lib.rs b/compiler/cl-typeck/src/lib.rs index 15456bb..18092bb 100644 --- a/compiler/cl-typeck/src/lib.rs +++ b/compiler/cl-typeck/src/lib.rs @@ -22,15 +22,15 @@ //! Within a Project, [definitions](definition::Def) are classified into two namespaces: //! //! ## Type Namespace: -//! - Modules -//! - Structs -//! - Enums -//! - Type aliases +//! - Modules +//! - Structs +//! - Enums +//! - Type aliases //! //! ## Value Namespace: -//! - Functions -//! - Constants -//! - Static variables +//! - Functions +//! - Constants +//! - Static variables //! //! There is a *key* distinction between the two namespaces when it comes to //! [Path](path::Path) traversal: Only items in the Type Namespace will be considered