diff options
author | Eduardo Julian | 2021-07-29 19:23:23 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-07-29 19:23:23 -0400 |
commit | 54b28c1caeda08965c258411a32229be1766d47f (patch) | |
tree | ee0eecd3a009f80e716f2c3c07095bc80d3b70bb /stdlib/source/library/lux/world/shell.lux | |
parent | 5d4583aebd00adced10275b32ff1a93ab418be50 (diff) |
Switched from the "from to" convention to the "minimum additional" convention.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/library/lux/world/shell.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/world/shell.lux b/stdlib/source/library/lux/world/shell.lux index c9f524a69..8c4614a32 100644 --- a/stdlib/source/library/lux/world/shell.lux +++ b/stdlib/source/library/lux/world/shell.lux @@ -150,7 +150,7 @@ (..safe_common_command replacer)) safe_argument (: (Sanitizer Argument) (|>> (..replace "'" replacer) - (text.enclose' "'")))] + (text.enclosed' "'")))] (..policy safe_command safe_argument))) (def: windows_policy @@ -164,7 +164,7 @@ (|>> (..replace "%" replacer) (..replace "!" replacer) (..replace text.double_quote replacer) - (text.enclose' text.double_quote)))] + (text.enclosed' text.double_quote)))] (..policy safe_command safe_argument))) (with_expansions [<jvm> (as_is (import: java/lang/String |