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.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/documentation/lux/control/concurrency/frp.lux b/stdlib/source/documentation/lux/control/concurrency/frp.lux
index 2f89cf7bd..ed095f73c 100644
--- a/stdlib/source/documentation/lux/control/concurrency/frp.lux
+++ b/stdlib/source/documentation/lux/control/concurrency/frp.lux
@@ -24,33 +24,33 @@
($.default /.distinct)
($.default /.list)
- ($.documentation (/.Channel it)
+ ($.definition (/.Channel it)
"An asynchronous channel to distribute values.")
- ($.documentation (/.Sink it)
+ ($.definition (/.Sink it)
"The tail-end of a channel, which can be written-to to fee the channel.")
- ($.documentation /.channel
+ ($.definition /.channel
"Creates a brand-new channel and hands it over, along with the sink to write to it."
[(channel _)])
- ($.documentation (/.Subscriber it)
+ ($.definition (/.Subscriber it)
"A function that can receive every value fed into a channel.")
- ($.documentation /.only
+ ($.definition /.only
(format "Produces a new channel based on the old one, only with values"
\n "that pass the test.")
[(only pass? channel)])
- ($.documentation /.of_async
+ ($.definition /.of_async
"A one-element channel containing the output from an async."
[(of_async async)])
- ($.documentation /.mix
+ ($.definition /.mix
"Asynchronous mix over channels."
[(mix f init channel)])
- ($.documentation /.sequential
+ ($.definition /.sequential
"Transforms the given list into a channel with the same elements."
[(sequential milli_seconds values)])]
[]))