aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDrahflow <drahflow@gmx.de>2015-05-08 08:50:29 +0200
committerDrahflow <drahflow@gmx.de>2015-05-08 08:50:29 +0200
commite0198a181aa974b5f130016a7b4401813db25a0a (patch)
tree8b181c9c0e3f3faed0a29269fc53227526cc758a /doc
parent2d0b1b855775a956a1110cf5958731459b7ef3b0 (diff)
Actually, this is only shallowly const
Diffstat (limited to 'doc')
-rw-r--r--doc/scopes.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/scopes.md b/doc/scopes.md
index 8b40e93..279c7e3 100644
--- a/doc/scopes.md
+++ b/doc/scopes.md
@@ -40,10 +40,10 @@ 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 `defvc`, i.e. value definition with 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
+* `=*:` aliases `deffc`, i.e. executable definition with 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.