From 48a6bcad9fa6e9040e246fbd3c9c6c915cefb07a Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Sat, 9 May 2026 16:28:42 +0300 Subject: [PATCH] docs(repository_layout): describe legacy as optional 0.x-adjacent API Replace Pre-2.0 wording with legacy module note aligned with 0.x default surface. --- docs/src/repository_layout.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/repository_layout.md b/docs/src/repository_layout.md index fa2f60b..ef8535b 100644 --- a/docs/src/repository_layout.md +++ b/docs/src/repository_layout.md @@ -45,7 +45,7 @@ src/ ├── mesh/ # Mesh{N, Topo}, structured / unstructured / refine / ordering ├── io/ # Gmsh-oriented I/O (legacy mesh readers live under legacy/) ├── sparse/ # SparseMatrixCOO / SparseVectorCOO scratch helpers -├── legacy/ # Pre-2.0 API in `module Legacy`; load with JULIAFEM_ENABLE_LEGACY=1 +├── legacy/ # Legacy API in `module Legacy` (optional; not the default 0.x surface); load with JULIAFEM_ENABLE_LEGACY=1 ├── exports.jl # Grouped public API exports └── JuliaFEM.jl # Module entry point ```