aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland Hieber <rohieb@rohieb.name>2015-05-08 01:47:44 +0200
committerRoland Hieber <rohieb@rohieb.name>2015-05-08 01:47:44 +0200
commitb6b8dd979ad8d237a7f17c0e83cf6ba3ecc69504 (patch)
treedd7f157294f9e5f427968c7d2d28f9f73703a143
parent403a7003899fc6f0752b09cc3caca3cc3013dde5 (diff)
scopes.md: from my understanding, this should be deff* for executable.
defv* is already defined in the three preceding lines. If my assumption is wrong, please add an explanation why it is defv* and not deff* ;-)
-rw-r--r--doc/scopes.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/scopes.md b/doc/scopes.md
index 1bed056..8b40e93 100644
--- a/doc/scopes.md
+++ b/doc/scopes.md
@@ -41,9 +41,9 @@ Some of these functions are aliased, because they appear particularly useful:
* `==?` aliases `defv`, i.e. value definition without optimization guarantees
* `==` aliases `defvst`, i.e. value definition with static and type constness
* `==:` aliases `defvd`, i.e. value definition with deep constness
-* `=*?` aliases `defv`, i.e. executable definition without optimization guarantees
-* `=*` aliases `defvst`, i.e. executable definition with static and type constness
-* `=*:` aliases `defvd`, i.e. executable definition with deep constness
+* `=*?` aliases `deff`, i.e. executable definition without optimization guarantees
+* `=*` aliases `deffst`, i.e. executable definition with static and type constness
+* `=*:` aliases `deffd`, i.e. executable definition with deep constness
The value associated with a name can be updated using the `=` function. It takes a name to update and the new value from the stack.