aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/codec.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/control/codec.lux')
-rw-r--r--stdlib/source/lux/control/codec.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/control/codec.lux b/stdlib/source/lux/control/codec.lux
index 55095ee3c..fdd571a10 100644
--- a/stdlib/source/lux/control/codec.lux
+++ b/stdlib/source/lux/control/codec.lux
@@ -18,7 +18,7 @@
(-> (Codec c b) (Codec b a)
(Codec c a)))
(def: encode
- (|>. (:: Codec<b,a> encode)
+ (|>> (:: Codec<b,a> encode)
(:: Codec<c,b> encode)))
(def: (decode cy)