diff options
Diffstat (limited to 'stdlib/source/program')
-rw-r--r-- | stdlib/source/program/aedifex/hash.lux | 8 | ||||
-rw-r--r-- | stdlib/source/program/aedifex/metadata.lux | 4 |
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)) |