From 052f9191c36fdc16275ee8fd28f74e092862a690 Mon Sep 17 00:00:00 2001 From: IgorCielniak Date: Wed, 25 Mar 2026 13:28:26 +0100 Subject: [PATCH] I was bored --- main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index 98c28d4..af9685c 100644 --- a/main.py +++ b/main.py @@ -11542,7 +11542,7 @@ def _run_docs_tui( "\n" " 5. NASM + LINKER\n" " The assembly is assembled by NASM into an object\n" - " file, then linked (via ld or gcc) into the final\n" + " file, then linked (via ld or ld.ldd) into the final\n" " binary.\n" "\n" "───────────────────────────────────────────────────────────────\n" @@ -11567,7 +11567,7 @@ def _run_docs_tui( " The CT VM is a stack-based interpreter that runs during\n" " parsing. It maintains:\n" "\n" - " - A value stack (Python list of ints/strings/lists)\n" + " - A value stack\n" " - A dictionary of CT-callable words\n" " - A return stack for nested calls\n" "\n" @@ -11579,7 +11579,7 @@ def _run_docs_tui( "\n" " When --ct-run-main is used, the CT VM can also JIT-compile\n" " and execute native x86-64 code via the Keystone assembler\n" - " engine (for words that need native performance).\n" + " engine (for words that need near native performance).\n" "\n" "───────────────────────────────────────────────────────────────\n" "\n" @@ -11641,7 +11641,7 @@ def _run_docs_tui( " just numbers. Type safety is your responsibility.\n" "\n" " - Macro expansion depth: macros can expand macros,\n" - " but there's a limit (default 64, configurable via\n" + " but there's a limit (default 256, configurable via\n" " --macro-expansion-limit).\n" "\n" " - :py blocks: Python code embedded in :py { ... }\n"