aboutsummaryrefslogtreecommitdiffstats
path: root/extra
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2020-03-25 10:43:29 +0000
committers-ol <s-ol@users.noreply.github.com>2020-03-25 11:25:05 +0000
commit7cb862f6f6079509dafd466fff83c719cb2fd89e (patch)
tree843f92c4d4b2507e88a525b7c56c29d343958e5b /extra
parentValue -> Value/Event/IO-Stream (diff)
downloadalive-7cb862f6f6079509dafd466fff83c719cb2fd89e.tar.gz
alive-7cb862f6f6079509dafd466fff83c719cb2fd89e.zip
new core.base.match, update lib
Diffstat (limited to 'extra')
-rw-r--r--extra/docs.moon4
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/docs.moon b/extra/docs.moon
index f43ecfa..19c272b 100644
--- a/extra/docs.moon
+++ b/extra/docs.moon
@@ -1,4 +1,4 @@
-import Value, Scope from require 'core'
+import ValueStream, Scope from require 'core'
import render, layout, autoref from require 'extra.layout'
import section, h1, h2, h3, p, ul, li, a, code, r from require 'extra.dom'
@@ -68,7 +68,7 @@ spit OUT, switch command
p "These definitions are automatically loaded into the global Scope of
every alive session."
ul for key, val in opairs require 'core.builtin'
- li render key, Value.wrap val
+ li render key, ValueStream.wrap val
}
}