summaryrefslogtreecommitdiff
path: root/mkdocs.yml
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-02 16:26:09 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-02 16:26:09 -0400
commitb26ad08b39b8229dcea0bafc4a8ba4b0d7ad7154 (patch)
tree1a469cc7f1ab2bbf2af42336518fa19ad0d0ed76 /mkdocs.yml
parentba087e5dbcc50537d82da5dbc602df7292d3f24c (diff)
reformat with sync and async calls
Diffstat (limited to 'mkdocs.yml')
-rw-r--r--mkdocs.yml12
1 files changed, 8 insertions, 4 deletions
diff --git a/mkdocs.yml b/mkdocs.yml
index 6efaf5e..46ea0d1 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -5,9 +5,10 @@ repo_name: Markdown Source
copyright: Copyright &copy; nodist
nav:
- Main: 'index.md'
- - Syntax:
- - Code: 'syntax/index.md'
- - Operators: 'syntax/operators.md'
+ - Language:
+ - Syntax: 'language/index.md'
+ - Operators: 'language/operators.md'
+ - Ownership: 'language/ownership.md'
- Type System:
- Templates: 'type_system/index.md'
- Alias: 'type_system/alias.md'
@@ -38,5 +39,8 @@ nav:
- Namespace: 'type_system/namespace.md'
- Application:
- Runtime: 'application/index.md'
+ - Interface: 'application/interface.md'
+ - Type: 'application/type.md'
- Pool: 'application/pool.md'
- - Processes: 'application/process.md'
+ - Thread: 'application/thread.md'
+ - Testing: 'application/testing.md'