aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/maybe.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/control/maybe.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/control/maybe.lux b/stdlib/source/library/lux/control/maybe.lux
index cd963db10..98192ffa1 100644
--- a/stdlib/source/library/lux/control/maybe.lux
+++ b/stdlib/source/library/lux/control/maybe.lux
@@ -39,7 +39,7 @@
... {.#None}
it
- (:expected it))))
+ (as_expected it))))
(implementation: .public apply
(Apply Maybe)
@@ -69,7 +69,7 @@
... {.#None}
it
- (:expected it))))
+ (as_expected it))))
(implementation: .public (equivalence super)
(All (_ a) (-> (Equivalence a) (Equivalence (Maybe a))))
@@ -119,7 +119,7 @@
... {.#None}
it
- (in (:expected it))))))
+ (in (as_expected it))))))
(def: .public (lifted monad)
(All (_ M a) (-> (Monad M) (-> (M a) (M (Maybe a)))))
@@ -128,7 +128,7 @@
(macro: .public (else tokens state)
(case tokens
(pattern (.list else maybe))
- (let [g!temp (: Code [location.dummy {.#Symbol ["" ""]}])]
+ (let [g!temp (is Code [location.dummy {.#Symbol ["" ""]}])]
{.#Right [state (.list (` (.case (~ maybe)
{.#Some (~ g!temp)}
(~ g!temp)