From: Thomas Walker Lynch
Date: Mon, 9 Mar 2026 01:34:26 +0000 (+0000)
Subject: doc tweaks
X-Git-Url: https://git.reasoningtechnology.com/%5B%5E?a=commitdiff_plain;h=e665bb71e911fc32863cdc6bc1cfca202fa19949;p=Harmony
doc tweaks
---
diff --git a/developer/document/02_RT_Code_Format.html b/developer/document/02_RT_Code_Format.html
index 8cb5ee8..45a471d 100644
--- a/developer/document/02_RT_Code_Format.html
+++ b/developer/document/02_RT_Code_Format.html
@@ -58,15 +58,6 @@
Otherwise, if the language does not support hyphens in identifiers (such as C, Python, and Java), the identifier falls back to standard snake_case and only the underscore (_) is used for all separation. In C specifically, a center dot (·) is used for ad hoc namespaces.
- Suffix Semantics
- Add a container type suffix instead of making variable names plural. Never use plurals.
-
- - *_dp : directory path
- - *_fp : file path
- - *_list : generic ordered items
- - *_count : number of elements
-
-
Comma Separated Lists
Horizontal Comma List
diff --git a/developer/document/03_Naming_and_Directory_Conventions.html b/developer/document/03_Naming_and_Directory_Conventions.html
index cf452ed..b90203f 100644
--- a/developer/document/03_Naming_and_Directory_Conventions.html
+++ b/developer/document/03_Naming_and_Directory_Conventions.html
@@ -45,7 +45,7 @@
Hence, with the default makefile for C, compiler fodder is found in the authored/ directory. File name extensions are used to signal to the build tools how the file is to be processed:
- - .cli.c : Fodder made into a stand-alone executable.
+ - .cli.c : Compiler fodder made into a stand-alone executable.
- .lib.c : Library code source, compiled as an object file and added to the project archive.
- .mod.c : Kernel module sources.