commit 961ff6187c7f455223d7014f82203f5f4be0d662
parent c12309feb3534bfca707a4dea1e7e3a9353c6326
Author: Ed van Bruggen <ed@edryd.org>
Date: Mon, 17 Aug 2026 11:33:15 -0400
Fix typo
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/content/posts/tisp-v0_1.md b/content/posts/tisp-v0_1.md
@@ -36,7 +36,7 @@ Together this eventually motivated the creation of a new language which combines
- Enables simple yet powerful macros to extend syntax by manipulating code like data.
- Prefix syntax for `Func`, `quote`, `quasiqutote`, `unquote`, and `unquote-splice`.
- Runtime evaluation
- - Full language is always available: `read`, `parse`, `eval`, and `print` eevo code during runtime.
+ - Full language is always available: `read`, `parse`, `eval`, and `print` tisp code during runtime.
- Symmetric printing: values are printed in a format that can be read by the parser
(with the exception of procedures).
- Basic error messages and debugging through backtrace `bt`.
@@ -163,7 +163,7 @@ See the documentation of each primitive for more information.
# Core Library
-Functions defined in eevo, included by default but not required.
+Functions defined in tisp, included by default but not required.
- `list`, `list*`
- `if`, `when`, `unless`