aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control/concurrency/frp.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/control/concurrency/frp.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/documentation/lux/control/concurrency/frp.lux b/stdlib/source/documentation/lux/control/concurrency/frp.lux
index f22587e37..7334340f5 100644
--- a/stdlib/source/documentation/lux/control/concurrency/frp.lux
+++ b/stdlib/source/documentation/lux/control/concurrency/frp.lux
@@ -33,7 +33,7 @@
($.definition /.channel
"Creates a brand-new channel and hands it over, along with the sink to write to it."
- [(channel _)])
+ ($.example (channel _)))
($.definition (/.Subscriber it)
"A function that can receive every value fed into a channel.")
@@ -41,17 +41,17 @@
($.definition /.only
(format "Produces a new channel based on the old one, only with values"
\n "that pass the test.")
- [(only pass? channel)])
+ ($.example (only pass? channel)))
($.definition /.of_async
"A one-element channel containing the output from an async."
- [(of_async async)])
+ ($.example (of_async async)))
($.definition /.mix
"Asynchronous mix over channels."
- [(mix f init channel)])
+ ($.example (mix f init channel)))
($.definition /.sequential
"Transforms the given list into a channel with the same elements."
- [(sequential milli_seconds values)])
+ ($.example (sequential milli_seconds values)))
))