aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/command/version.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/aedifex/command/version.lux')
-rw-r--r--stdlib/source/test/aedifex/command/version.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/test/aedifex/command/version.lux b/stdlib/source/test/aedifex/command/version.lux
index 4a8ccc1be..d0d172a7a 100644
--- a/stdlib/source/test/aedifex/command/version.lux
+++ b/stdlib/source/test/aedifex/command/version.lux
@@ -35,7 +35,7 @@
(def: (on_read [open? state])
(if open?
- (try.from_maybe
+ (try.of_maybe
(do maybe.monad
[head (text.nth 0 state)
[_ tail] (text.split 1 state)]
@@ -43,7 +43,7 @@
(exception.throw ..console_is_closed! [])))
(def: (on_read_line [open? state])
(if open?
- (try.from_maybe
+ (try.of_maybe
(do maybe.monad
[[output state] (text.split_with text.new_line state)]
(wrap [[open? state] output])))