aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program
diff options
context:
space:
mode:
authorEduardo Julian2022-03-30 21:25:53 -0400
committerEduardo Julian2022-03-30 21:25:53 -0400
commit8eb86ed366b2305751f2e831c7a081ffcca82c89 (patch)
treef8da5967f61d115414b3655dd9045cef370c8d5b /stdlib/source/program
parent4326d69ab717683449bf37bf8dd170c83455c0c0 (diff)
De-sigil-ification: /
Diffstat (limited to 'stdlib/source/program')
-rw-r--r--stdlib/source/program/aedifex/hash.lux8
-rw-r--r--stdlib/source/program/aedifex/metadata.lux4
2 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/program/aedifex/hash.lux b/stdlib/source/program/aedifex/hash.lux
index 5adf44a9e..1455fd65f 100644
--- a/stdlib/source/program/aedifex/hash.lux
+++ b/stdlib/source/program/aedifex/hash.lux
@@ -131,7 +131,7 @@
{.#Some [head tail]}
(do try.monad
[head (# n.hex decoded head)
- output (binary.write/64! index head output)]
+ output (binary.write_64! index head output)]
(again tail (++ chunk) output))
{.#None}
@@ -143,9 +143,9 @@
[head (# n.hex decoded input)
output (<write> index head output)]
(constructor output))])
- ([1 binary.write/8!]
- [2 binary.write/16!]
- [4 binary.write/32!])
+ ([1 binary.has_8!]
+ [2 binary.has_16!]
+ [4 binary.has_32!])
_ (exception.except ..not_a_hash [(..encoding_size size) encoded])))))
(exception.except ..not_a_hash [(..encoding_size size) encoded]))))
diff --git a/stdlib/source/program/aedifex/metadata.lux b/stdlib/source/program/aedifex/metadata.lux
index 097aedac8..be3e17b55 100644
--- a/stdlib/source/program/aedifex/metadata.lux
+++ b/stdlib/source/program/aedifex/metadata.lux
@@ -36,8 +36,8 @@
(def: .public (local_uri remote_uri)
(-> URI URI)
- (text.replaced/1 ..remote_file ..local_file remote_uri))
+ (text.replaced_once ..remote_file ..local_file remote_uri))
(def: .public (remote_uri local_uri)
(-> URI URI)
- (text.replaced/1 ..local_file ..remote_file local_uri))
+ (text.replaced_once ..local_file ..remote_file local_uri))