summary refs log tree commit diff
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2022-11-07 22:17:32 +0100
committerLeah Neukirchen <leah@vuxu.org>2022-11-07 22:18:20 +0100
commit087eb8ad283106ec455958a14aa9169b1ef9cdde (patch)
tree263381193a00768c37db6e4857946f26946df341
parentf5424bdb870afc969bf23231123602ea3dbde8a6 (diff)
downloadmew-087eb8ad283106ec455958a14aa9169b1ef9cdde.tar.gz
mew-087eb8ad283106ec455958a14aa9169b1ef9cdde.tar.xz
mew-087eb8ad283106ec455958a14aa9169b1ef9cdde.zip
doc tweaks
-rw-r--r--mew.svnwiki9
1 files changed, 6 insertions, 3 deletions
diff --git a/mew.svnwiki b/mew.svnwiki
index 4549f7b..dc2208d 100644
--- a/mew.svnwiki
+++ b/mew.svnwiki
@@ -1,5 +1,5 @@
 Mew is a library targetting R5RS/R7RS scheme, which provides some
-conveniences inspired from Goo, Clojure and Arc to allow writing more
+conveniences inspired from Goo, Clojure, T and Arc to allow writing more
 compact code.
 
 
@@ -13,8 +13,8 @@ has been taken to not reuse identifiers found in important SRFIs.
 
 Mew code is tight code, commonly used Mew identifiers are short.
 
-Mew uses a few features of R7RS internally, but does not require using
-R7RS.
+Mew uses a few features provided by R7RS internally, but does not
+require using R7RS.
 
 Mew targets Chicken Scheme currently but should be easy to port to
 other Scheme implementations.
@@ -29,6 +29,9 @@ Mew generally uses {{equal?}} as equality predicate.
 
 Mew never mutates lists.
 
+Except for few shortcut macros ({{op}} and {{op*}),
+Mew endorses macro hygiene.
+
 
 == Re-Exports