aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Chambers <[email protected]>2021-10-17 16:05:07 +1300
committerAndrew Chambers <[email protected]>2021-10-17 16:05:07 +1300
commita676a0898852aa6393ed7b393c71a5815235f5e4 (patch)
treea323a8b0960a159a324b8ca8c84c69077c205050
parent99a4b464d8a5e47c492c15b2b88d712a557a797b (diff)
Update readme.
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 9d1d5b7..500570b 100644
--- a/README.md
+++ b/README.md
@@ -50,12 +50,12 @@ Bonus features:
# Notes
-- Minias deliberately does not free allocated memory as it all is
+- The implementation deliberately does not free allocated memory as it all is
freed by the OS at the end of execution. Memory usage is still
quite light as it uses string and value interning. In the future
we could use an arena allocator for minias and still avoid manual calls to free.
-- Minias deliberately uses global variables in a style similar class members in C++.
+- The implementation deliberately uses global variables in a style similar class members in C++.
This is a more traditional unix style where the unit of data encapsulation is a
small program. This choice makes sense given we don't aim to build a library.