From 8453b092f1b4db4f11f821784e91a585c4ef696d Mon Sep 17 00:00:00 2001 From: John Date: Wed, 24 Apr 2024 16:50:30 -0500 Subject: [PATCH] cl-typeck: Fix list in doc comment getting mistaken for a doctest --- compiler/cl-typeck/src/lib.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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