aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/php.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/target/php.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/target/php.lux b/stdlib/source/library/lux/target/php.lux
index 7cc266b98..e96d8fe85 100644
--- a/stdlib/source/library/lux/target/php.lux
+++ b/stdlib/source/library/lux/target/php.lux
@@ -37,11 +37,11 @@
(def: block
(-> Text Text)
- (|>> ..nest (text.enclose ["{" (format text.new_line "}")])))
+ (|>> ..nest (text.enclosed ["{" (format text.new_line "}")])))
(def: group
(-> Text Text)
- (text.enclose ["(" ")"]))
+ (text.enclosed ["(" ")"]))
(abstract: #export (Code brand)
Text
@@ -176,7 +176,7 @@
(def: #export string
(-> Text Literal)
(|>> ..safe
- (text.enclose [text.double_quote text.double_quote])
+ (text.enclosed [text.double_quote text.double_quote])
:abstraction))
(def: arguments