aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/repository/remote.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/program/aedifex/repository/remote.lux')
-rw-r--r--stdlib/source/program/aedifex/repository/remote.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/program/aedifex/repository/remote.lux b/stdlib/source/program/aedifex/repository/remote.lux
index 7f1a735b8..6252d75f2 100644
--- a/stdlib/source/program/aedifex/repository/remote.lux
+++ b/stdlib/source/program/aedifex/repository/remote.lux
@@ -68,11 +68,11 @@
http))]
(case status
(^ (static http/status.ok))
- (# ! each product.right ((value@ @http.#body message) {.#None}))
+ (# ! each product.right ((the @http.#body message) {.#None}))
_
(do !
- [_ ((value@ @http.#body message) {.#Some 0})]
+ [_ ((the @http.#body message) {.#Some 0})]
(# io.monad in (exception.except ..download_failure [(format address uri) status]))))))
(def: (upload uri content)
@@ -88,7 +88,7 @@
..base_headers)))
{.#Some content}
http))
- _ ((value@ @http.#body message) {.#Some 0})]
+ _ ((the @http.#body message) {.#Some 0})]
(case status
(^ (static http/status.created))
(in [])