aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/lazy.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/data/lazy.lux')
-rw-r--r--stdlib/source/lux/data/lazy.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/data/lazy.lux b/stdlib/source/lux/data/lazy.lux
index db0293413..87be68d66 100644
--- a/stdlib/source/lux/data/lazy.lux
+++ b/stdlib/source/lux/data/lazy.lux
@@ -41,11 +41,11 @@
(with-gensyms [g!_]
(wrap (list (` ((~! freeze') (function ((~ g!_) (~ g!_)) (~ expr))))))))
-(structure: #export (equivalence (^open "_@."))
+(structure: #export (equivalence (^open "_\."))
(All [a] (-> (Equivalence a) (Equivalence (Lazy a))))
(def: (= left right)
- (_@= (..thaw left) (..thaw right))))
+ (_\= (..thaw left) (..thaw right))))
(structure: #export functor
(Functor Lazy)