aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/type/opaque.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/type/opaque.lux')
-rw-r--r--stdlib/source/lux/type/opaque.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/type/opaque.lux b/stdlib/source/lux/type/opaque.lux
index 636acd6e2..6bbf4c2a9 100644
--- a/stdlib/source/lux/type/opaque.lux
+++ b/stdlib/source/lux/type/opaque.lux
@@ -55,7 +55,7 @@
(def: representation-name
(-> Text Text)
- (|>. ($_ text/compose "{" kind "@" module "}")
+ (|>> ($_ text/compose "{" kind "@" module "}")
(let [[module kind] (ident-for #;;Representation)])))
(def: (install-casts' this-module-name name type-vars)
@@ -74,7 +74,7 @@
(^ (list value))
(wrap (list (` ((: (All [(~@ type-varsC)]
(-> (~ representation-declaration) (~ opaque-declaration)))
- (|>. :!!))
+ (|>> :!!))
(~ value)))))
_
@@ -87,7 +87,7 @@
(^ (list value))
(wrap (list (` ((: (All [(~@ type-varsC)]
(-> (~ opaque-declaration) (~ representation-declaration)))
- (|>. :!!))
+ (|>> :!!))
(~ value)))))
_