aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/store.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/data/store.lux18
1 files changed, 9 insertions, 9 deletions
diff --git a/stdlib/source/library/lux/data/store.lux b/stdlib/source/library/lux/data/store.lux
index 11c9580d0..a30bdf0c4 100644
--- a/stdlib/source/library/lux/data/store.lux
+++ b/stdlib/source/library/lux/data/store.lux
@@ -1,11 +1,11 @@
(.using
- [library
- [lux "*"
- [abstract
- [functor {"+" Functor}]
- comonad]
- [type
- implicit]]])
+ [library
+ [lux "*"
+ [abstract
+ [functor {"+" Functor}]
+ comonad]
+ [type
+ implicit]]])
(type: .public (Store s a)
(Record
@@ -14,8 +14,8 @@
(def: (extend f wa)
(All (_ s a b) (-> (-> (Store s a) b) (Store s a) (Store s b)))
- [#cursor (value@ #cursor wa)
- #peek (function (_ s) (f (with@ #cursor s wa)))])
+ [#cursor (the #cursor wa)
+ #peek (function (_ s) (f (has #cursor s wa)))])
(implementation: .public functor
(All (_ s) (Functor (Store s)))