aboutsummaryrefslogtreecommitdiff
path: root/README.adoc
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2017-05-28 10:02:19 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2017-05-28 10:02:19 +0200
commit4698e522cc1182244a1b509d17a29b1cbdcba443 (patch)
tree035ebb420da9741665ab0ce1004857f4fb3b0411 /README.adoc
parent81853a37fb4f6861220c727c967977797e02a71c (diff)
downloadell-4698e522cc1182244a1b509d17a29b1cbdcba443.tar.gz
ell-4698e522cc1182244a1b509d17a29b1cbdcba443.tar.xz
ell-4698e522cc1182244a1b509d17a29b1cbdcba443.zip
Fix regression in multiplication
Diffstat (limited to 'README.adoc')
-rw-r--r--README.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.adoc b/README.adoc
index d4c9412..c091259 100644
--- a/README.adoc
+++ b/README.adoc
@@ -52,7 +52,7 @@ Runtime
-------
Variables use per-block dynamic scoping. Arguments to a block (which is a list
of lists) are assigned to local variables named `1`, `2`, etc., and the full
-list of them is stored in `*`.
+list of them is stored in `args`.
When evaluating a command, the first argument is typically a string with its
name and it is resolved as if `set` was called on it.
@@ -166,7 +166,7 @@ Install development packages for GNU Readline to get a REPL for toying around:
Possible Ways of Complicating
-----------------------------
- * `local [_a _b _rest] @*` would elegantly solve the problem of varargs,
+ * `local [_a _b _rest] @args` would elegantly solve the problem of varargs,
that is, unpack a list when names are list, and make the last element a list
when there are more arguments than names
* reference counting: currently all values are always copied as needed, which