aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/tainted.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/data/tainted.lux')
-rw-r--r--stdlib/source/lux/data/tainted.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/data/tainted.lux b/stdlib/source/lux/data/tainted.lux
index ffe128022..d65e9c56b 100644
--- a/stdlib/source/lux/data/tainted.lux
+++ b/stdlib/source/lux/data/tainted.lux
@@ -8,11 +8,11 @@
(def: #export taint
(All [a] (-> a (Tainted a)))
- (|>. @opaque))
+ (|>> @opaque))
(def: #export trust
(All [a] (-> (Tainted a) a))
- (|>. @repr)))
+ (|>> @repr)))
(def: #export (validate pred tainted)
(All [a] (-> (-> a Bool) (Tainted a) (Maybe a)))